First version
This commit is contained in:
commit
f6501517d5
54 changed files with 3455 additions and 0 deletions
17
themes/blue-penguin/templates/article.html
Normal file
17
themes/blue-penguin/templates/article.html
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{% extends "base.html" %}
|
||||
|
||||
{% block head %}
|
||||
{{ super() }}
|
||||
{% if article.tags %}
|
||||
<meta name="keywords" content="{{ article.tags|join(",") }}" />
|
||||
{% endif %}
|
||||
{% if article.description %}
|
||||
<meta name="description" content="{{ article.description }}" />
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
|
||||
{% block title %}{{ SITENAME }} | {{ article.title }}{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
{% include "article_stub.html" %}
|
||||
{% endblock %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue