cards, new post thing
This commit is contained in:
parent
7555f3bbcb
commit
744d837327
10 changed files with 733 additions and 7 deletions
|
|
@ -1,5 +1,20 @@
|
|||
{% extends "base.html" %}
|
||||
|
||||
{% block pagemeta %}
|
||||
|
||||
<title>{{ page.title }} - {{ config.title }}</title>
|
||||
<meta property="og:title" content="{{ page.title }}" />
|
||||
<meta property="og:url" content="{{ page.permalink }}" />
|
||||
|
||||
{% if page.description %}
|
||||
<meta name="description">{{ page.description }}</meta>
|
||||
<meta property="og:description" content="{{ page.description }}" />
|
||||
{% else %}
|
||||
<meta property="og:description" content="{{ config.description }}" />
|
||||
{% endif %}
|
||||
|
||||
{% endblock pagemeta %}
|
||||
|
||||
{% block content %}
|
||||
<header class="page-header">
|
||||
<h1>{{ page.title }}</h1>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue