devroom.io/layouts/_default/single.html

73 lines
2.1 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">
2017-04-21 14:53:29 +00:00
<h4>Learn more?</h4>
2016-08-24 11:12:08 +00:00
<p>
2017-04-21 14:53:29 +00:00
Reading books is a great way to learn new things. I've made a list of <a href="/recommendations">book I highly recommend</a>.
</p>
<h4>Get in touch</h4>
2016-08-24 11:12:08 +00:00
<p>
I'd love to hear your questions and comments on this article!
2017-04-21 14:53:29 +00:00
<a href="http://twitter.com/ariejan">Mention @ariejan on Twitter</a>, <a href="mailto:ariejan@devroom.io">shoot me an email</a> (<a href="/gpg">gpg</a> available) or sign up for <a href="http://eepurl.com/cL3XY9" target="_blank">my newsletter</a>.
2016-08-24 11:12:08 +00:00
</p>
<div class="avatar"></div>
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 Elixir. In my free time I love to
repair audio equipment, experiment with electronics, and play the piano.
2016-08-24 11:12:08 +00:00
</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 type="text/javascript">
2017-03-20 22:21:16 +00:00
function ready(fn) {
if (document.readyState != 'loading') {
fn();
} else {
document.addEventListener('DOMContentLoaded', fn);
}
}
function imageClick(e) {
e.preventDefault();
this.classList.toggle('zoomed');
}
2016-10-10 13:53:46 +00:00
2017-03-20 22:21:16 +00:00
function handleEsc(e) {
if (e.keyCode == 27) {
var zoomedImages = document.querySelectorAll('img.zoomed');
Array.prototype.forEach.call(zoomedImages, function(el, i) {
el.classList.toggle('zoomed');
});
}
}
ready(function() {
var images = document.querySelectorAll('article img');
Array.prototype.forEach.call(images, function(el, i) {
el.addEventListener('click', imageClick);
2016-10-10 13:53:46 +00:00
});
2017-03-20 22:21:16 +00:00
document.addEventListener('keyup', handleEsc);
2016-10-10 13:53:46 +00:00
});
</script>
2015-03-26 11:28:08 +00:00
{{ partial "footer.html" . }}