blob: 1b0b74c95fa816dbd6a579276d4a5eee03304dac (
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.show_downloads %}
{% 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>
|