blob: b89abf9dc0deaff0b4d51492da5d080d1aef2b7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<header>
{% if site.inc_before_header %}
{% include {{ site.inc_before_header }} %}
{% endif %}
{% if site.logo_url %}
{% include gw_header/logo.html %}
{% endif %}
{% if site.github.is_user_page %}
<p class="view"><a href="{{ site.github.owner_url }}">View My GitHub Profile</a></p>
{% endif %}
{% if site.show_downloads %}
{% include gw_header/downloads.html %}
{% endif %}
{% if site.inc_after_header %}
{% include {{ site.inc_after_header }} %}
{% endif %}
</header>
|