update example site html/page titles

This commit is contained in:
Gered 2023-07-01 16:24:36 -04:00
parent 2d9ce75ec0
commit 2f8e242a61
6 changed files with 6 additions and 5 deletions

View file

@ -1,5 +1,5 @@
{% extends "base.html" %}
{% block title %}Posts Archive{% endblock title %}
{% block title %}Posts Archive :: {% endblock title %}
{% block content %}
<header>
<h1>Posts Archive</h1>

View file

@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="UTF-8">
<title>My Site :: {% block title %}{% endblock title %}</title>
<title>{% block title %}{% endblock title %}My Site</title>
<link rel="stylesheet" type="text/css" href="/site.css">
<link rel="stylesheet" type="text/css" href="/syntax-highlighting.css">
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico">

View file

@ -1,4 +1,5 @@
{% extends "base.html" %}
{% block title %}{% endblock title %}
{% block content %}
{% include "partials/post.html" %}
{% endblock content %}

View file

@ -1,5 +1,5 @@
{% extends "base.html" %}
{% block title %}{{ page.title }}{% endblock title %}
{% block title %}{{ page.title }} :: {% endblock title %}
{% block content %}
{% include "partials/page.html" %}
{% endblock content %}

View file

@ -1,5 +1,5 @@
{% extends "base.html" %}
{% block title %}{{ post.title }}{% endblock title %}
{% block title %}{{ post.title }} :: {% endblock title %}
{% block content %}
{% include "partials/post.html" %}
{% endblock content %}

View file

@ -1,5 +1,5 @@
{% extends "base.html" %}
{% block title %}Posts With Tag {{ tag }}{% endblock title %}
{% block title %}Posts With Tag {{ tag }} :: {% endblock title %}
{% block content %}
<header>
<h1>Posts With Tag "{{ tag }}"</h1>