site-ui/src/layouts/single-post.hbs (41 lines of code) (raw):
<!DOCTYPE html>
<html lang="en">
<head>
{{> head-first}}
<title>Apache Cassandra{{#with site.title}} | {{this}}{{/with}}</title>
{{#with (canonical-url)}}
<link rel="canonical" href="{{this}}">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,700;1,400&family=Red+Hat+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&display=swap" rel="stylesheet">
{{/with}}
{{> head-last}}
</head>
<body class="{{ page.layout }}">
<div class="container mx-auto relative">
{{> header }}
<div class="hero hero--home grad">
<div class="eye"></div>
<div id="home-content" class="text-center flex flex-center flex-column relative z2 ma-xlarge">
<h1>{{ page.title }}</h1>
<h3>{{ page.attributes.post-date }} | {{ page.attributes.post-author }}</h3>
</div>
</div>
<div id="blog-post" class="flex-center py-large arrow">
<div class="blog-breadcrumb mb-medium">
<div class="inner inner--narrow">
<a href="{{{ site.url }}}/_/blog.html">« Back to the Apache Cassandra Blog</a>
</div>
</div>
<div class="post-content">
<div class="inner inner--narrow">
{{{ page.contents }}}
</div>
</div>
</div>
{{> footer}}
</div>
</body>
<script>
jQuery(function(){
});
</script>
</html>