temper-tv/main-site/themes/temper/layouts/index.html

24 lines
839 B
HTML
Raw Normal View History

2023-09-20 03:20:03 +00:00
<!DOCTYPE html>
<html lang="en-us">
{{ partial "head.html" . }}
{{ if .IsHome }}
2023-10-18 22:18:29 +00:00
<body class="main-page">
{{ else }}
<body>
{{ end }}
2023-09-20 03:20:03 +00:00
<div class="banner-container">
<div class="headline">
<h1 class="headline-title reveal-text">{{.Site.Title}}</h1>
<h5 class="reveal-text">{{.Site.Params.Description}}</h5>
2023-09-20 03:20:03 +00:00
{{ partial "socials.html" . }}
</div>
2023-09-22 03:39:55 +00:00
<div class="launchpad">
{{ partial "main-buttons.html" . }}
</div>
2023-09-20 03:20:03 +00:00
</div>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</body>
</html>