devroom.io/layouts/_default/single.html

55 lines
1.6 KiB
HTML
Raw Normal View History

2015-03-26 11:28:08 +00:00
{{ partial "header.html" . }}
2016-08-24 11:12:08 +00:00
<article class="post" id="{{ .Slug }}">
<h1>{{ .Title }}</h1>
<p>
2016-08-24 11:03:32 +00:00
{{ if eq .Section "posts" }}
2016-08-24 11:24:54 +00:00
{{ .Date.Format "2 January 2006" }}
2016-08-24 11:03:32 +00:00
{{ end }}
2016-08-24 11:12:08 +00:00
</p>
{{ .Content }}
{{ if eq .Section "posts" }}
2016-08-24 11:13:42 +00:00
<aside class="about">
2016-08-24 11:12:08 +00:00
<p>
2016-10-10 07:18:15 +00:00
Want to read more? Check out my <a href="/recommendations">book recommendations</a>.
2016-08-24 11:12:08 +00:00
</p>
<p>
I'd love to hear your questions and comments on this article!
<a href="http://twitter.com/ariejan">Mention @ariejan on twitter</a> or <a href="mailto:ariejan@ariejan.net">shoot me an email</a>.
</p>
2016-08-24 11:24:54 +00:00
<img class="avatar" alt="Ariejan's Avatar" src="https://0.gravatar.com/avatar/a9bfdd0cc75c857b669c37548b8bfdf9?s=100" />
2016-08-24 11:12:08 +00:00
<h4>About Ariejan</h4>
<p>
Hey! I'm a software engineer building rock solid back-end systems
using Ruby, Ruby on Rails and Golang. In my free time I like to
repair audio equipment, play the piano and experiment with electronics.
</p>
2016-08-24 11:13:42 +00:00
</aside>
2016-08-24 11:12:08 +00:00
{{ end }}
</article>
2015-03-26 11:28:08 +00:00
2016-10-10 13:53:46 +00:00
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script type="text/javascript">
$(function() {
$(document).on('click', 'article img', function() {
$(this).toggleClass('zoomed');
});
$(document).keyup(function(e) {
if (e.keyCode == 27) {
$('img.zoomed').each(function(idx) {
$(this).toggleClass('zoomed');
});
}
});
});
</script>
2015-03-26 11:28:08 +00:00
{{ partial "footer.html" . }}