summaryrefslogtreecommitdiff
path: root/_includes/git-wiki/sections/header/header.html
blob: 34f21dda21b6d9283feb29c91e890222430b0612 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<header>
  {% if site.inc_before_header %}
  {% include {{ site.inc_before_header }} %}
  {% endif %}

  {% if site.logo_url %}
  {% include git-wiki/components/logo/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 git-wiki/components/action_btn/downloads.html %}
  {% endif %}

  {% if site.show_wiki_pages %}
  {% include git-wiki/components/lists/page-list.html %}
  {% endif %}

  {% if site.blog_feature and site.show_wiki_posts %}
  {% include git-wiki/components/lists/post-list.html %}
  {% endif %}

  {% if site.inc_after_header %}
  {% include {{ site.inc_after_header }} %}
  {% endif %}
</header>