added new home layout
This commit is contained in:
parent
509f1a545d
commit
6e5614763d
8 changed files with 2381 additions and 33 deletions
|
@ -1,18 +1,55 @@
|
|||
{% extends "base.html" %}
|
||||
|
||||
<!-- Custom front matter -->
|
||||
{% block extrahead %}
|
||||
|
||||
<!-- Determine title -->
|
||||
{% set title = config.site_name %}
|
||||
{% if page and page.title and not page.is_homepage %}
|
||||
{% set title = config.site_name ~ " - " ~ page.title | striptags %}
|
||||
{% endif %}
|
||||
|
||||
<!-- The image needs to have an absolute URL -->
|
||||
{% set image = config.site_url ~ 'assets/images/illustrations/banner.png' %}
|
||||
|
||||
<!-- Open graph meta tags -->
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:title" content="{{ title }}" />
|
||||
<meta property="og:description" content="{{ config.site_description }}" />
|
||||
<meta property="og:url" content="{{ page.canonical_url }}" />
|
||||
<meta property="og:image" content="{{ image }}" />
|
||||
<meta property="og:image:type" content="image/png" />
|
||||
<meta property="og:image:width" content="1080" />
|
||||
<meta property="og:image:height" content="568" />
|
||||
|
||||
<!-- google-site-verification meta-tag -->
|
||||
<meta name="google-site-verification" content="-Rj8YMCn9uu5IwOFdC-WfAzXp4ZOMJtYKxU40ZgcJIU" />
|
||||
|
||||
<!-- Extra stylesheets -->
|
||||
<!-- <link
|
||||
rel="stylesheet"
|
||||
href="{{ 'assets/stylesheets/overrides.css' | url }}"
|
||||
/>-->
|
||||
{% endblock %}
|
||||
|
||||
<!-- Announcement bar -->
|
||||
{% block announce %}
|
||||
Für Updates folge bitte <strong>@stiebke</strong> auf
|
||||
<a rel="me" href="https://freiburg.social/@squidfunk">
|
||||
<span class="twemoji mastodon">
|
||||
{% include ".icons/fontawesome/brands/mastodon.svg" %}
|
||||
<!-- Extra stylesing -->
|
||||
<style>
|
||||
.md-announce a,
|
||||
.md-announce a:focus,
|
||||
.md-announce a:hover{color:currentColor}.md-announce
|
||||
strong{white-space:nowrap}.md-announce
|
||||
</style>
|
||||
|
||||
<a href="https://www.linkedin.com/company/binbash">
|
||||
<p style="color: #D5EE1C">For updates follow <strong style="color: #D5EE1C">@binbash</strong> on
|
||||
<span class="twemoji linkedin" style="color: #0e76a8">
|
||||
{% include ".icons/fontawesome/brands/linkedin-in.svg" %}
|
||||
</span>
|
||||
<strong>freiburg.social</strong>
|
||||
</a>
|
||||
und <strong>stiebke.bsky.social</strong> auf
|
||||
<a href="https://bsky.app/profile/stiebke.bsky.social">
|
||||
<span class="twemoji bluesky">
|
||||
{% include ".icons/fontawesome/brands/bluesky.svg" %}
|
||||
</span>
|
||||
<strong>Bluesky</strong>
|
||||
</a>
|
||||
<strong style="color: white">LinkedIn</strong>
|
||||
</p>
|
||||
</a>
|
||||
|
||||
|
||||
{% endblock %}
|
Loading…
Add table
Add a link
Reference in a new issue