site-ui/src/layouts/basic-full.hbs (37 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>
</div>
</div>
<div class="flex-center py-large arrow">
{{{page.contents}}}
</div>
{{> footer}}
</div>
</body>
<script>
jQuery(function(){
jQuery(document)
.on('click','.cassandra-cloud h3',function(){
var el = jQuery(this);
el.toggleClass('active');
el.next().slideToggle();
});
});
</script>
</html>