summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregor Kleen <pngwjpgh@users.noreply.github.com>2016-07-30 19:49:31 +0200
committerGregor Kleen <pngwjpgh@users.noreply.github.com>2016-07-30 19:49:31 +0200
commita7c4efe474c2d4b0efd60339d54a908d3d10576d (patch)
tree8abb5dadba37b98f30841fff9867ffefe5dfba1b
parentafa41a48274110460411b7b7858383fc05c5928b (diff)
downloaddirty-haskell.org-a7c4efe474c2d4b0efd60339d54a908d3d10576d.tar
dirty-haskell.org-a7c4efe474c2d4b0efd60339d54a908d3d10576d.tar.gz
dirty-haskell.org-a7c4efe474c2d4b0efd60339d54a908d3d10576d.tar.bz2
dirty-haskell.org-a7c4efe474c2d4b0efd60339d54a908d3d10576d.tar.xz
dirty-haskell.org-a7c4efe474c2d4b0efd60339d54a908d3d10576d.zip
blog@dirty-haskell.org is a list now
-rw-r--r--provider/css/default.css8
-rw-r--r--provider/templates/default.html3
2 files changed, 9 insertions, 2 deletions
diff --git a/provider/css/default.css b/provider/css/default.css
index 91c1e2d..c5c8013 100644
--- a/provider/css/default.css
+++ b/provider/css/default.css
@@ -34,6 +34,8 @@ ul.indexTagList ul {
34 34
35footer ul.tags:before { content:" — "; } 35footer ul.tags:before { content:" — "; }
36 36
37footer ul.tags:first-child:before { content:""; }
38
37footer ul.tags li { 39footer ul.tags li {
38 margin:0; 40 margin:0;
39 padding:0; 41 padding:0;
@@ -101,7 +103,11 @@ p + p {
101 margin-top:0.25em; 103 margin-top:0.25em;
102} 104}
103 105
104footer p, footer p:last-of-type { 106footer p.info:before { content:", "; }
107
108footer p.info:first-child:before { content:""; }
109
110footer p.info {
105 margin:0; 111 margin:0;
106 padding:0; 112 padding:0;
107 text-indent:0; 113 text-indent:0;
diff --git a/provider/templates/default.html b/provider/templates/default.html
index ffdd5e2..2e3b5db 100644
--- a/provider/templates/default.html
+++ b/provider/templates/default.html
@@ -22,8 +22,9 @@
22</header> 22</header>
23$body$ 23$body$
24<footer> 24<footer>
25 <p class="info">$if(published)$$published$, $endif$<a href="mailto:blog@dirty-haskell.org">blog@dirty-haskell.org</a></p> 25 $if(published)$<p class="info">Published $published$</p>$endif$
26 $if(tagList)$<ul class="tags">$tagList$</ul>$endif$ 26 $if(tagList)$<ul class="tags">$tagList$</ul>$endif$
27 <p>Send comments and other mail to <a href="mailto:blog@dirty-haskell.org">blog@dirty-haskell.org</a>. To learn how to receive other's comments send mail to <a href="blog+help@dirty-haskell.org">blog+help@dirty-haskell.org</a>.</p>
27</footer> 28</footer>
28</body> 29</body>
29</html> 30</html>