diff options
Diffstat (limited to 'docs/_includes/header.html')
-rw-r--r-- | docs/_includes/header.html | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/docs/_includes/header.html b/docs/_includes/header.html new file mode 100644 index 0000000..31e96e1 --- /dev/null +++ b/docs/_includes/header.html @@ -0,0 +1,32 @@ +<header> + <div class="logo"> + <div class="appIconShadow"> + <svg width="0" height="0"> + <defs> + <clipPath id="shape"> + <path id="shape" class="cls-1" d="M6181.23,233.709v-1.792c0-.5-0.02-1-0.02-1.523a24.257,24.257,0,0,0-.28-3.3,11.207,11.207,0,0,0-1.04-3.132,10.683,10.683,0,0,0-1.95-2.679,10.384,10.384,0,0,0-2.68-1.943,10.806,10.806,0,0,0-3.13-1.038,19.588,19.588,0,0,0-3.3-.285c-0.5-.017-1-0.017-1.52-0.017h-22.39c-0.51,0-1.01.017-1.53,0.017a24.041,24.041,0,0,0-3.3.285,11.009,11.009,0,0,0-3.13,1.038,10.491,10.491,0,0,0-4.62,4.622,10.893,10.893,0,0,0-1.04,3.132,19.2,19.2,0,0,0-.28,3.3c-0.02.5-.02,1-0.02,1.523v22.392c0,0.5.02,1,.02,1.524a24.257,24.257,0,0,0,.28,3.3,10.9,10.9,0,0,0,1.04,3.132,10.491,10.491,0,0,0,4.62,4.622,11.04,11.04,0,0,0,3.13,1.038,19.891,19.891,0,0,0,3.3.285c0.51,0.017,1.01.017,1.53,0.017h22.39c0.5,0,1-.017,1.52-0.017a24.221,24.221,0,0,0,3.3-.285,10.836,10.836,0,0,0,3.13-1.038,10.408,10.408,0,0,0,2.68-1.943,10.683,10.683,0,0,0,1.95-2.679,11.217,11.217,0,0,0,1.04-3.132,20.257,20.257,0,0,0,.28-3.3c0.02-.5.02-1,0.02-1.524v-20.6h0Z" transform="translate(-6131 -218)"/> + </clipPath> + </defs> + </svg> + {% if page.url != '/' %} + <a href="../" target="_self"><img class="headerIcon" src="{{ site.app_icon }}"></a> + {% else %} + <img class="headerIcon" src="{{ site.app_icon }}"> + {% endif %} + <div class="divider"></div> + </div> + <p class="headerName">{{ site.app_name }}</p> + </div> + <nav class="scroll"> + <ul> + {% for page in site.pages %} + {% if page.include_in_header == true %} + <li><a href="{{ page.url | relative_url }}" target="_self">{{ page.title }}</a></li> + {% endif %} + {% endfor %} + {% if site.presskit_download_link %} + <li><a href="{{ site.presskit_download_link }}">Press Kit</a></li> + {% endif %} + </ul> + </nav> +</header>
\ No newline at end of file |