Just in case I want to change the site title

This commit is contained in:
Sophia Atkinson 2022-12-20 23:26:36 -08:00
parent 8056d9694f
commit 5c185cb111
6 changed files with 35 additions and 21 deletions

View File

@ -1,3 +1,6 @@
<?php
include(__DIR__ . './../../assets/config.php');
?>
<!DOCTYPE HTML>
<!--
Multiverse by HTML5 UP
@ -7,15 +10,15 @@
<html>
<head>
<title>Archives For 2019 &#124; Perla The Dog</title>
<title>Archives For 2019 &#124; <?php echo title ?></title>
<?php
include(__DIR__ . './../../assets/includes/header.php');
?>
<meta name="description" content="Pictures Of Perla The Dog From 2019">
<meta name="description" content="Pictures Of <?php echo title ?> From 2019">
<meta property="og:url" content="/archives/2019/">
<meta property="og:type" content="website">
<meta property="og:title" content="Perla The Dog">
<meta property="og:description" content="Pictures Of Perla The Dog From 2019">
<meta property="og:title" content="<?php echo title ?>">
<meta property="og:description" content="Pictures Of <?php echo title ?> From 2019">
</head>
<body class="is-preload">
@ -23,7 +26,7 @@
<div id="wrapper">
<!-- Header -->
<header id="header">
<h1><a href="/"><strong>Perla The Dog</strong></a></h1>
<h1><a href="/"><strong><?php echo title ?></strong></a></h1>
<nav>
<ul>
<li><a href="#archives" class="icon solid fa-archive">Archives</a></li>

View File

@ -1,3 +1,6 @@
<?php
include(__DIR__ . './../../assets/config.php');
?>
<!DOCTYPE HTML>
<!--
Multiverse by HTML5 UP
@ -7,15 +10,15 @@
<html>
<head>
<title>Archives For 2020 &#124; Perla The Dog</title>
<title>Archives For 2020 &#124; <?php echo title ?></title>
<?php
include(__DIR__ . './../../assets/includes/header.php');
?>
<meta name="description" content="Pictures Of Perla The Dog From 2020">
<meta name="description" content="Pictures Of <?php echo title ?> From 2020">
<meta property="og:url" content="/archives/2020/">
<meta property="og:type" content="website">
<meta property="og:title" content="Perla The Dog">
<meta property="og:description" content="Pictures Of Perla The Dog From 2020">
<meta property="og:title" content="<?php echo title ?>">
<meta property="og:description" content="Pictures Of <?php echo title ?> From 2020">
</head>
<body class="is-preload">
@ -23,7 +26,7 @@
<div id="wrapper">
<!-- Header -->
<header id="header">
<h1><a href="/"><strong>Perla The Dog</strong></a></h1>
<h1><a href="/"><strong><?php echo title ?></strong></a></h1>
<nav>
<ul>
<li><a href="#archives" class="icon solid fa-archive">Archives</a></li>

View File

@ -1,3 +1,6 @@
<?php
include(__DIR__ . './../../assets/config.php');
?>
<!DOCTYPE HTML>
<!--
Multiverse by HTML5 UP
@ -7,15 +10,15 @@
<html>
<head>
<title>Archives For 2021 &#124; Perla The Dog</title>
<title>Archives For 2021 &#124; <?php echo title ?></title>
<?php
include(__DIR__ . './../../assets/includes/header.php');
?>
<meta name="description" content="Pictures Of Perla The Dog From 2021">
<meta name="description" content="Pictures Of <?php echo title ?> From 2021">
<meta property="og:url" content="/archives/2021/">
<meta property="og:type" content="website">
<meta property="og:title" content="Perla The Dog">
<meta property="og:description" content="Pictures Of Perla The Dog From 2021">
<meta property="og:title" content="<?php echo title ?>">
<meta property="og:description" content="Pictures Of <?php echo title ?> From 2021">
</head>
<body class="is-preload">
@ -23,7 +26,7 @@
<div id="wrapper">
<!-- Header -->
<header id="header">
<h1><a href="/"><strong>Perla The Dog</strong></a></h1>
<h1><a href="/"><strong><?php echo title ?></strong></a></h1>
<nav>
<ul>
<li><a href="#archives" class="icon solid fa-archive">Archives</a></li>

View File

@ -1,4 +1,6 @@
<?php
if (!defined('title')) define('title', 'Perla The Dog');
if (!defined('copyright')) define('copyright', '2022 Sophia Atkinson. CC BY-NC 4.0');
if (!defined('email')) define('email', 'mailto:sophialul@protonmail.com');

View File

@ -5,7 +5,7 @@
<div class="inner split">
<div>
<section>
<h2>Perla The Dog.</h2>
<h2><?php echo title ?>.</h2>
<p>She Is a Chihuahua Mix, and she is 7 years old. We adopted her in 2019 from <a class="white-link" href="https://www.familydogsnewlife.org/">Family Dogs New Life Shelter</a>.</p>
<h2>Site Info</h2>
<p>Site Maintained By <a class="white-link" href="https://sophia.wtf">Sophia Atkinson</a></p>

View File

@ -1,3 +1,6 @@
<?php
include(__DIR__ . '/assets/config.php');
?>
<!DOCTYPE HTML>
<!--
Multiverse by HTML5 UP
@ -7,15 +10,15 @@
<html>
<head>
<title>Perla The Dog</title>
<title><?php echo title ?></title>
<?php
include(__DIR__ . '/assets/includes/header.php');
?>
<meta name="description" content="Pictures Of Perla The Dog">
<meta name="description" content="Pictures Of <?php echo title ?>">
<meta property="og:url" content="https://perlathedog.com">
<meta property="og:type" content="website">
<meta property="og:title" content="Perla The Dog">
<meta property="og:description" content="Pictures Of Perla The Dog">
<meta property="og:title" content="<?php echo title ?>">
<meta property="og:description" content="Pictures Of <?php echo title ?>">
</head>
<body class="is-preload">
@ -23,7 +26,7 @@
<div id="wrapper">
<!-- Header -->
<header id="header">
<h1><a href="/"><strong>Perla The Dog</strong></a></h1>
<h1><a href="/"><strong><?php echo title ?></strong></a></h1>
<nav>
<ul>
<li><a href="#archives" class="icon solid fa-archive">Archives</a></li>