mirror of
https://github.com/linkedin/school-of-sre
synced 2026-01-06 16:48:02 +00:00
* bugfix missing nav bar in mobile * PSA AMA on Linux Networking course Co-authored-by: Kalyanasundaram Somasundaram <ksomasun@ksomasun-mn1.linkedin.biz>
57 lines
2.5 KiB
HTML
57 lines
2.5 KiB
HTML
{% block libs %}
|
|
<script async defer data-domain="linkedin.github.io" src="https://tracking.eskratch.com/js/plausible.js"></script>
|
|
{% endblock %}
|
|
{% set site_url = config.site_url | default(nav.homepage.url, true) | url %}
|
|
{% if not config.use_directory_urls and site_url[0] == site_url[-1] == "." %}
|
|
{% set site_url = site_url ~ "/index.html" %}
|
|
{% endif %}
|
|
<header class="md-header" data-md-component="header">
|
|
<nav class="md-header-nav md-grid" aria-label="{{ lang.t('header.title') }}">
|
|
<a href="{{ site_url }}" title="{{ config.site_name | e }}" class="md-header-nav__button md-logo" aria-label="{{ config.site_name }}">
|
|
{% include "partials/logo.html" %}
|
|
</a>
|
|
<!-- Button to open drawer -->
|
|
<label class="md-header-nav__button md-icon" for="__drawer">
|
|
{% include ".icons/material/menu" ~ ".svg" %}
|
|
</label>
|
|
<div class="md-header-nav__title" data-md-component="header-title">
|
|
{% if config.site_name == page.title %}
|
|
<div class="md-header-nav__ellipsis md-ellipsis">
|
|
<a href="{{ site_url }}" title="{{ config.site_name | e }}">
|
|
|
|
{{ config.site_name }}
|
|
</a>
|
|
</div>
|
|
{% else %}
|
|
<div class="md-header-nav__ellipsis">
|
|
<span class="md-header-nav__topic md-ellipsis">
|
|
<a href="{{ site_url }}" title="{{ config.site_name | e }}" >
|
|
{{ config.site_name }}
|
|
</a>
|
|
</span>
|
|
<span class="md-header-nav__topic md-ellipsis">
|
|
{% if page and page.meta and page.meta.title %}
|
|
{{ page.meta.title }}
|
|
{% else %}
|
|
{{ page.title }}
|
|
{% endif %}
|
|
</span>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
{% if "search" in config["plugins"] %}
|
|
<label class="md-header-nav__button md-icon" for="__search">
|
|
{% include ".icons/material/magnify.svg" %}
|
|
</label>
|
|
{% include "partials/search.html" %}
|
|
{% endif %}
|
|
{% if config.repo_url %}
|
|
<div class="md-header-nav__source">
|
|
{% include "partials/source.html" %}
|
|
</div>
|
|
{% endif %}
|
|
</nav>
|
|
<div style="background-color: hsla(219, 54%, 51%, 1); border: 2px ; margin: 0px; padding: 2px; font-size: 200%; font-weight: bold; text-align: center;">
|
|
Join our AMA on <u><a href="https://linkedin.github.io/school-of-sre/linux_networking/intro/">Linux Networking Course</a></u> in the <u><a href="https://www.linkedin.com/groups/12493545/">School-of-SRE LinkedIn Group </a></u> from 19 Feb 4PM IST to 7PM IST(10.30AM to 1.30PM GMT)
|
|
</header>
|