update example site html/page titles
This commit is contained in:
parent
2d9ce75ec0
commit
2f8e242a61
|
@ -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>
|
||||||
|
|
|
@ -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">
|
||||||
|
|
|
@ -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 %}
|
|
@ -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 %}
|
|
@ -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 %}
|
|
@ -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>
|
||||||
|
|
Loading…
Reference in a new issue