aboutsummaryrefslogtreecommitdiffstats
path: root/notebook/templates/base.html
diff options
context:
space:
mode:
Diffstat (limited to 'notebook/templates/base.html')
-rw-r--r--notebook/templates/base.html12
1 files changed, 8 insertions, 4 deletions
diff --git a/notebook/templates/base.html b/notebook/templates/base.html
index 6e9c24d..5483e93 100644
--- a/notebook/templates/base.html
+++ b/notebook/templates/base.html
@@ -3,20 +3,24 @@
<head>
{% block head %}
<meta charset="utf-8">
+ <!-- Site Meta Data -->
<title>{% block title %}{{ SITENAME }}{% endblock %}</title>
<meta name="description" content="">
<meta name="author" content="{{ AUTHOR }}">
+ <!-- Style Meta Data -->
<link rel="stylesheet" href="{{ SITEURL }}/theme/css/notebook.css" type="text/css" />
<link rel="shortcut icon" href="{{ SITEURL }}/{{ AVATAR}}">
+ <!-- Feed Meta Data -->
<link href="{{ SITEURL }}/{{ FEED }}" type="application/atom+xml" rel="alternate" title="{{ SITENAME }} ATOM Feed" />
{% if FEED_RSS %}
<link href="{{ SITEURL }}/{{ FEED_RSS }}" type="application/atom+xml" rel="alternate" title="{{ SITENAME }} RSS Feed" />
{% endif %}
+ <!-- Twitter Feed -->
<meta name="twitter:card" content="summary">
- <meta name="twitter:site" content="{{ SITENAME }}">
+ <meta name="twitter:site" content="{{ TWITTER_USERNAME }}">
<meta name="twitter:image" content="{{ SITEURL }}/{{ AVATAR }}">
{% endblock %}
</head>
@@ -70,9 +74,9 @@
<address id="about" class="vcard body">
{% if FIREFOX_BANNERS %}
<div align="center">
- {% for id, img, alt in FIREFOX_BANNERS %}
- <a href="http://affiliates.mozilla.org/link/banner/{{ id }}" target="_blank"><img src="{{ img }}" alt="{{ alt }}"/></a>
- {% endfor %}
+ {% for id, img, alt in FIREFOX_BANNERS %}
+ <a href="http://affiliates.mozilla.org/link/banner/{{ id }}" target="_blank"><img src="{{ img }}" alt="{{ alt }}"/></a>
+ {% endfor %}
</div>
{% endif %}
Blog powered by <a href="http://getpelican.com/">Pelican</a>,