diff options
Diffstat (limited to 'provider')
-rw-r--r-- | provider/css/default.css | 8 | ||||
-rw-r--r-- | provider/templates/default.html | 3 |
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 | ||
35 | footer ul.tags:before { content:" — "; } | 35 | footer ul.tags:before { content:" — "; } |
36 | 36 | ||
37 | footer ul.tags:first-child:before { content:""; } | ||
38 | |||
37 | footer ul.tags li { | 39 | footer 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 | ||
104 | footer p, footer p:last-of-type { | 106 | footer p.info:before { content:", "; } |
107 | |||
108 | footer p.info:first-child:before { content:""; } | ||
109 | |||
110 | footer 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> |