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" %} {% extends "base.html" %}
{% block title %}Posts Archive{% endblock title %} {% block title %}Posts Archive :: {% endblock title %}
{% block content %} {% block content %}
<header> <header>
<h1>Posts Archive</h1> <h1>Posts Archive</h1>

View file

@ -2,7 +2,7 @@
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8"> <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="/site.css">
<link rel="stylesheet" type="text/css" href="/syntax-highlighting.css"> <link rel="stylesheet" type="text/css" href="/syntax-highlighting.css">
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico"> <link rel="shortcut icon" type="image/x-icon" href="/favicon.ico">

View file

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

View file

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

View file

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

View file

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