aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap
diff options
context:
space:
mode:
Diffstat (limited to 'bootstrap')
-rw-r--r--bootstrap/static/local.css2
-rw-r--r--bootstrap/templates/archives.html2
-rw-r--r--bootstrap/templates/categories.html2
-rw-r--r--bootstrap/templates/page.html8
-rw-r--r--bootstrap/templates/tags.html2
5 files changed, 12 insertions, 4 deletions
diff --git a/bootstrap/static/local.css b/bootstrap/static/local.css
index 42318b9..ae2602c 100644
--- a/bootstrap/static/local.css
+++ b/bootstrap/static/local.css
@@ -29,7 +29,7 @@ div.highlight pre {
.social a[href*='github.com']:before {content: url('./images/icons/github.png'); margin-right: 2px; vertical-align: -3px;}
.social a[href*='google.com/reader']:before {content: url('./images/icons/reader.png'); margin-right: 2px; vertical-align: -3px;}
.social a[href*='jamendo.com']:before {content: url('./images/icons/jamendo.png'); margin-right: 2px; vertical-align: -3px;}
-.social a[href*='last.fm']:before, .social a[href*='lastfm.']:before {content: url('./images/icons/rss.png'); margin-right: 2px; vertical-align: -3px;}
+.social a[href*='last.fm']:before {content: url('./images/icons/lastfm.png'); margin-right: 2px; vertical-align: -3px;}
.social a[href*='linkedin.com']:before {content: url('./images/icons/linkedin.png'); margin-right: 2px; vertical-align: -3px;}
.social a[href*='rss.xml']:before {content: url('./images/icons/rss.png'); margin-right: 2px; vertical-align: -3px;}
.social a[href*='stackoverflow.com']:before {content: url('./images/icons/stackoverflow.png'); margin-right: 2px; vertical-align: -3px;}
diff --git a/bootstrap/templates/archives.html b/bootstrap/templates/archives.html
index 2d02e12..6dee8ed 100644
--- a/bootstrap/templates/archives.html
+++ b/bootstrap/templates/archives.html
@@ -7,7 +7,7 @@
<h3>{{ articles[ 0 ].date.strftime( '%B' ) }}</h3>
<ul>
{% for article in articles %}
- <li><a href="{{ article.url }}">{{ article.title }}</li>
+ <li><a href="{{ article.url }}">{{ article.title }}</a></li>
{% endfor %}
</ul>
{% endfor %}
diff --git a/bootstrap/templates/categories.html b/bootstrap/templates/categories.html
index 36b57bc..4500237 100644
--- a/bootstrap/templates/categories.html
+++ b/bootstrap/templates/categories.html
@@ -3,7 +3,7 @@
{% block content %}
<ul>
{% for category, articles in categories %}
- <li><a href="{{ SITEURL }}/category/{{ category }}.html">{{ category }}</li>
+ <li><a href="{{ SITEURL }}/category/{{ category }}.html">{{ category }}</a></li>
{% endfor %}
</ul>
{% endblock %}
diff --git a/bootstrap/templates/page.html b/bootstrap/templates/page.html
new file mode 100644
index 0000000..15015ff
--- /dev/null
+++ b/bootstrap/templates/page.html
@@ -0,0 +1,8 @@
+{% extends "base.html" %}
+{% block indextitle %}{% endblock %}
+{% block content %}
+ <div class='page'>
+ <div class="page-header"><h1>{{ page.title }}</h1></div>
+ <div>{{ page.content }}</div>
+ </div>
+{% endblock %} \ No newline at end of file
diff --git a/bootstrap/templates/tags.html b/bootstrap/templates/tags.html
index 592cd0d..a3b37be 100644
--- a/bootstrap/templates/tags.html
+++ b/bootstrap/templates/tags.html
@@ -3,7 +3,7 @@
{% block content %}
<ul>
{% for tag, articles in tags %}
- <li><a href="{{ SITEURL }}/tag/{{ tag }}.html">{{ tag }}</li>
+ <li><a href="{{ SITEURL }}/tag/{{ tag }}.html">{{ tag }}</a></li>
{% endfor %}
</ul>
{% endblock %}