-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.html
More file actions
34 lines (34 loc) · 1.62 KB
/
default.html
File metadata and controls
34 lines (34 loc) · 1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!--
Custom layout overriding jekyll-theme-cayman's default. Adds the
InfTec logo to the header and a brand-coloured footer. Brand
tokens come from InfTec-StyleGuide.pdf and are applied via
/assets/css/style.scss.
-->
<!DOCTYPE html>
<html lang="{{ site.lang | default: 'en' }}">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% if page.title and page.url != '/' %}{{ page.title }} · {{ site.title }}{% else %}{{ site.title }}{% endif %}</title>
<meta name="description" content="{{ page.description | default: site.description }}">
<link rel="icon" href="{{ '/assets/img/favicon.ico' | relative_url }}" sizes="any">
<link rel="stylesheet" href="{{ '/assets/css/style.css' | relative_url }}">
</head>
<body>
<header class="page-header" role="banner">
<a href="{{ '/' | relative_url }}" class="site-logo-link" aria-label="{{ site.title }} home">
<img src="{{ '/assets/img/inftec-logo.png' | relative_url }}" alt="InfTec" class="site-logo">
</a>
<h1 class="project-name">{{ page.title | default: site.title }}</h1>
<h2 class="project-tagline">{{ page.description | default: site.description }}</h2>
</header>
<main id="content" class="main-content" role="main">
{{ content }}
<footer class="site-footer">
<span class="site-footer-owner">© <strong>InfTec GmbH</strong>, Switzerland</span>
<span class="site-footer-credits"><a href="mailto:info@inftec.ch">info@inftec.ch</a></span>
</footer>
</main>
</body>
</html>