diff --git a/hakyll-bootstrap/Main.hs b/hakyll-bootstrap/Main.hs index 723481407bc4e0634d90eedcda74b5d9dd9b7183..0d9d50b5326113e0e1049e08a64fa4f610b1b435 100644 --- a/hakyll-bootstrap/Main.hs +++ b/hakyll-bootstrap/Main.hs @@ -158,6 +158,7 @@ main = hakyllWith config $ do match "posts/bachelor/*.md" $ do route $ setExtension "html" compile $ pandocCompiler + >>= loadAndApplyTemplate "templates/post.html" postCtx >>= relativizeUrls -- Team members list diff --git a/hakyll-bootstrap/pages/contact.md b/hakyll-bootstrap/pages/contact.md index 9cb586520e1dccf9b8ec55eef791ead89a9e46a9..ff8b7bd2e58ecfee7067dd95240753aa8bc4bd41 100644 --- a/hakyll-bootstrap/pages/contact.md +++ b/hakyll-bootstrap/pages/contact.md @@ -11,6 +11,6 @@ orestis dot malaspinas at hesge dot ch\ <http://www.hesge.ch/hepia>\ Tel. +41 (0)22 546 67 06 -<!-- [Follow \@omalaspinas](https://twitter.com/omalaspinas) --> +[Follow \@omalaspinas](https://twitter.com/omalaspinas) -<a href="https://twitter.com/omalaspinas?ref_src=twsrc%5Etfw" class="twitter-follow-button" data-show-count="false">Follow @omalaspinas</a> +<!-- <a href="https://twitter.com/omalaspinas?ref_src=twsrc%5Etfw" class="twitter-follow-button" data-show-count="false">Follow @omalaspinas on Twitter</a><script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script> --> diff --git a/hakyll-bootstrap/templates/footer.html b/hakyll-bootstrap/templates/footer.html index b2daa7d4cf9a5e6e9d7c26ffa89bbb4832086fc3..175de03bc13d06c43da346902d88bd4d1abced2a 100644 --- a/hakyll-bootstrap/templates/footer.html +++ b/hakyll-bootstrap/templates/footer.html @@ -1,4 +1,6 @@ <footer> <p class="pull-right"><a href="#">Back to top</a></p> + Site proudly generated by <a href="http://github.com/jaspervdj/hakyll">hakyll</a> and inspired by <a href="https://github.com/sdiehl/hakyll-bootstrap">hakyll-bootstrap</a>. + <!-- <p>© 2013 My Company · <a href="/pages/privacy.html">Privacy</a> · <a href="/pages/tos.html">Terms</a></p> --> </footer> diff --git a/hakyll-bootstrap/templates/page.html b/hakyll-bootstrap/templates/page.html index bb78d2a4c272dd2bdc1ac60fa119032bf329abbd..b5e2aa9dce3f2f715baa588f281867430eb9ff2b 100644 --- a/hakyll-bootstrap/templates/page.html +++ b/hakyll-bootstrap/templates/page.html @@ -30,6 +30,5 @@ <script src="/js/jquery.js"></script> <script src="/js/bootstrap.js"></script> <script src="/js/holder.js"></script> - <script src="/js/widgets.js" charset="utf-8"></script> </body> </html>