mirror of
https://gitlab.com/veilid/veilid-dot-com.git
synced 2025-03-12 10:26:36 -04:00
89 lines
3.7 KiB
Twig
89 lines
3.7 KiB
Twig
<!DOCTYPE html>
|
|
<html lang="{{ site.language }}">
|
|
<head>
|
|
{%- block head ~%}
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
{{- include('partials/metatags.html.twig', {page, site}, with_context = false) ~}}
|
|
<link href="{{ url(asset('scss/style.scss')|to_css) }}" rel="stylesheet">
|
|
{%- endblock head ~%}
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<div class="container" id="header-content">
|
|
{%- block header ~%}
|
|
|
|
{%- if page.type == 'homepage' ~%}
|
|
<h1 id="site-logo"><img src="/img/Veilid.svg" alt="Veilid Logo" title="{{ site.title }}"></h1>
|
|
{%- else ~%}
|
|
<h1 id="site-logo"><a href="/"><img src="/img/Veilid.svg" alt="Veilid Logo" title="{{ site.title }}"></a></h1>
|
|
{%- endif ~%}
|
|
<div class="links">
|
|
<ul class="list-inline no-comma m-0">
|
|
<li class="list-inline-item"><a href="#content">Skip to Content</a></li>
|
|
<li class="list-inline-item"><a href="/web-text"><img src="/img/fonts.svg" alt="Icon for Font Size" class="d-inline"><span class="d-none d-md-inline">Customize Text</span></a></li>
|
|
<li class="list-inline-item"><a href="/translations"><img src="/img/translate.svg" alt="Icon for Translations" class="d-inline"><span class="d-none d-md-inline">Translations</span></a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
{%- endblock header ~%}
|
|
</div>
|
|
</header>
|
|
<main>
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-md-9 order-md-2" id="content">
|
|
{% if page.type != 'homepage' %}
|
|
{{ include('partials/breadcrumbs.html.twig', with_context = true) }}
|
|
{% endif %}
|
|
{% block content %}
|
|
<h2 id="page-title">{{ page.title }}</h2>
|
|
{{ page.content }}
|
|
{%- endblock content ~%}
|
|
{#- debug ~#}
|
|
{%- if getenv('CECIL_DEBUG') %}{{ d(page) }}{% endif ~%}
|
|
</div>
|
|
<div class="col-md-3 order-md-1">
|
|
{{- include('partials/navigation.html.twig', {menu: site.menus.main, here: url(page), page_type: page.type }, with_context = false) ~}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
<footer>
|
|
<div class="container">
|
|
{%- block footer ~%}
|
|
<div class="row">
|
|
<div class="col-md-4 col-lg-3">
|
|
<h4>More Information</h4>
|
|
<ul>
|
|
<li><a href="/who-built-veilid">About Us</a></li>
|
|
<li><a href="/faq">Frequently Asked Questions</a></li>
|
|
<li><a href="/events">Events</a></li>
|
|
</ul>
|
|
</div>
|
|
<div class="col-md-4 col-lg-3">
|
|
<h4>Veilid on Social Media</h4>
|
|
<ul>
|
|
<li><a href="https://twitter.com/cdc_pulpit">cDc on Twitter</a></li>
|
|
<li><a href="https://twitter.com/VeilidNetwork">Veilid on Twitter</a></li>
|
|
<li><a href="https://bsky.app/profile/cultdeadcow.bsky.social">Veilid on BlueSky</a></li>
|
|
<li><a href="https://hackers.town/@veilidnetwork">Veilid on Fedi</a></li>
|
|
</ul>
|
|
</div>
|
|
<div class="col-md-4 col-lg-3">
|
|
<h4>Contact Us</h4>
|
|
<ul>
|
|
<li>For app support, please email <a href="mailto:support@veilid.com">support@veilid.com</a></li>
|
|
<li><a href="/press">Press</a></li>
|
|
</ul>
|
|
</div>
|
|
<div class="col-lg-3 text-center">
|
|
<p><img src="/img/Veilid-V-Outlined.svg" id="footer-logo"></p>
|
|
<p>© 2025 Veilid Framework</p>
|
|
</div>
|
|
</div>
|
|
{%- endblock footer ~%}
|
|
</div>
|
|
</footer>
|
|
</body>
|
|
</html> |