5641d7e51a
ALSO: Remove fading on dropdown menu click. This is also a bug on the actual upstream, when the cursor leaves the screen the menu disappears but the fading doesn't. This causes things like the menu saying it's open when it's not and closed when open. I'm not dealing with an upstream bug.
29 lines
764 B
HTML
29 lines
764 B
HTML
---
|
|
layout: default
|
|
author_profile: false
|
|
---
|
|
|
|
{% if page.header.overlay_color or page.header.overlay_image or page.header.image %}
|
|
{% include page__hero.html %}
|
|
{% elsif page.header.video.id and page.header.video.provider %}
|
|
{% include page__hero_video.html %}
|
|
{% endif %}
|
|
|
|
{% if page.url != "/" and site.breadcrumbs %}
|
|
{% unless paginator %}
|
|
{% include breadcrumbs.html %}
|
|
{% endunless %}
|
|
{% endif %}
|
|
|
|
<div id="main" role="main">
|
|
{% include sidebar.html %}
|
|
|
|
<div class="archive">
|
|
{% unless page.header.overlay_color or page.header.overlay_image %}
|
|
<h1 id="page-title" class="page__title">{{ page.title }}</h1>
|
|
{% endunless %}
|
|
{% for post in page.posts %}
|
|
{% include archive-single.html %}
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|