1st commit
This commit is contained in:
20
src/templates/footer.html
Normal file
20
src/templates/footer.html
Normal file
@ -0,0 +1,20 @@
|
||||
<!-- Footer -->
|
||||
<div id="footer" class="content-wrapper navigation appear">
|
||||
<div class="footer-content">
|
||||
<ul class="social">
|
||||
<li class="social-item appear">
|
||||
<a href="{{ instagram_url }}"><i class="fa-brands fa-instagram"></i></a>
|
||||
</ul>
|
||||
<div class="nav-links">
|
||||
<ul class="nav-list">
|
||||
{{ menu_items }}
|
||||
</ul>
|
||||
</div>
|
||||
<div class="inner bottom-link appear">
|
||||
<p class="navigation-subtitle appear">{{ copyright }}</p>
|
||||
<p class="navigation-bottom-link appear"><a href="{{ legal_link }}">{{ legal_label }}</a></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<button id="scrollToTop" class="scroll-up" aria-label="up">↑</button>
|
||||
<script type="text/javascript" src="/js/lazy.js?{{ build_date }}" defer></script>
|
4
src/templates/gallery.html
Normal file
4
src/templates/gallery.html
Normal file
@ -0,0 +1,4 @@
|
||||
<!-- Gallery -->
|
||||
<div id="gallery" class="gallery content-wrapper">
|
||||
{{ gallery_images }}
|
||||
</div>
|
44
src/templates/head.html
Normal file
44
src/templates/head.html
Normal file
@ -0,0 +1,44 @@
|
||||
<head>
|
||||
<!-- Meta -->
|
||||
<title>{{ title }}</title>
|
||||
<link rel="icon" href="/favicon.ico" type="image/x-icon">
|
||||
<link rel="icon" type="image/png" href="/img/favicon/favicon-32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="/img/favicon/favicon-96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/png" href="/img/favicon/favicon-128.png" sizes="128x128">
|
||||
<link rel="icon" type="image/png" href="/img/favicon/favicon-192.png" sizes="192x192">
|
||||
<!-- Android -->
|
||||
<link rel="shortcut icon" sizes="196x196" href="/img/favicon/favicon-196.png">
|
||||
<!-- iOS -->
|
||||
<link rel="apple-touch-icon" href="/img/favicon/favicon-152.png" sizes="152x152">
|
||||
<link rel="apple-touch-icon" href="/img/favicon/favicon-180.png" sizes="180x180">
|
||||
<meta charset="utf-8">
|
||||
<meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />
|
||||
<meta name="theme-color" content="{{ browser_color }}">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
||||
<meta name="description" content="{{ description }}">
|
||||
<meta name="keywords" content="{{ keywords }}">
|
||||
<meta name="author" content="{{ author }}">
|
||||
<link rel="canonical" href="{{ canonical }}"/>
|
||||
<!-- Ressources -->
|
||||
{{ google_fonts_link }}
|
||||
{{ font_preloads }}
|
||||
<link href="/style/style.css?{{ build_date }}" rel="stylesheet" type="text/css">
|
||||
<link rel="stylesheet" href="/style/colors.css?{{ build_date }}">
|
||||
<link rel="stylesheet" href="/style/fonts.css?{{ build_date }}">
|
||||
{{ theme_css }}
|
||||
<!-- Social -->
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta property="og:image" content="{{ thumbnail }}">
|
||||
<meta property="og:locale" content="en_US" />
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:title" content="Home - {{ title }}" />
|
||||
<meta property="og:description" content="{{ description }}" />
|
||||
<meta property="og:url" content="{{ canonical }}" />
|
||||
<meta property="og:site_name" content="{{ title }}" />
|
||||
<!-- Scripts -->
|
||||
<script src="https://kit.fontawesome.com/7c6bfe3c24.js" crossorigin="anonymous"></script>
|
||||
<script type="text/javascript" src="/js/lumeex.js?{{ build_date }}" defer></script>
|
||||
<script src="https://code.jquery.com/jquery-2.2.4.min.js"></script>
|
||||
</head>
|
29
src/templates/hero.html
Normal file
29
src/templates/hero.html
Normal file
@ -0,0 +1,29 @@
|
||||
<!-- Hero -->
|
||||
<div id="hero">
|
||||
<div class="content-wrapper appear">
|
||||
<div class="section">
|
||||
<div class="hero-background">
|
||||
<div class="hero-title appear">
|
||||
<div>
|
||||
<h1>{{ title }}</h1>
|
||||
<p>{{ subtitle }}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="hero-menu navigation">
|
||||
<ul class="social">
|
||||
<li class="social-item appear">
|
||||
<a href="{{ instagram_url }}"><i class="fa-brands fa-instagram"></i></a>
|
||||
</ul>
|
||||
<div class="nav-links">
|
||||
<ul class="nav-list">
|
||||
{{ menu_items }}
|
||||
</ul>
|
||||
</div>
|
||||
<div class="inner bottom-link appear">
|
||||
<p class="navigation-bottom-link appear"><a href="#gallery">↓</a></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
12
src/templates/legals.html
Normal file
12
src/templates/legals.html
Normal file
@ -0,0 +1,12 @@
|
||||
<div id="legals" class="content-wrapper appear">
|
||||
<a href="/" class="back-button" aria-label="Go back to homepage">←</a>
|
||||
<div class="legals-content">
|
||||
<h1>Legals</h1>
|
||||
<h2>Hoster</h2>
|
||||
<p><strong>Name:</strong> {{ hoster_name }}</p>
|
||||
<p><strong>Adress:</strong> {{ hoster_adress }}</p>
|
||||
<p><strong>Contact:</strong> {{ hoster_contact }}</p>
|
||||
<h2>Intellectual Property</h2>
|
||||
{{ intellectual_property }}
|
||||
</div>
|
||||
</div>
|
Reference in New Issue
Block a user