mirror of
https://github.com/stashapp/website.git
synced 2026-04-13 11:21:09 -05:00
82 lines
3.0 KiB
HTML
Executable File
82 lines
3.0 KiB
HTML
Executable File
<!doctype html>
|
|
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
{% seo %}
|
|
{% feed_meta %}
|
|
|
|
<link rel="stylesheet" href="{{ site.baseurl }}/css/screen.css">
|
|
<link rel="icon" type="image/png" href="{{ site.baseurl }}/images/stock/favicon.ico">
|
|
|
|
{% if jekyll.environment == 'production' and site.google_analytics_key != '' %}
|
|
<!-- <script>
|
|
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
|
|
ga('create', '{{ site.google_analytics_key }}', 'auto');
|
|
ga('send', 'pageview');
|
|
</script>
|
|
<script async src='https://www.google-analytics.com/analytics.js'></script> -->
|
|
{% endif %}
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<div class="container">
|
|
<div class="company-name">
|
|
<a href="{{ site.baseurl }}/">
|
|
<img src="/images/stash.svg" class="logo" />
|
|
Stash
|
|
</a>
|
|
</div>
|
|
<!-- comment this when we have navigation links -->
|
|
{% include navigation.html %}
|
|
</div>
|
|
</header>
|
|
{{ content }}
|
|
<footer>
|
|
<div class="container">
|
|
<p class="editor-link"><a href="cloudcannon:collections/_data/footer.yml" class="btn"><strong>✎</strong> Edit footer</a></p>
|
|
<div class="footer-columns">
|
|
{% for column in site.data.footer %}
|
|
<ul class="footer-links">
|
|
{% for link in column.links %}
|
|
<li><a {% if link.new_window %}target="_blank"{% endif %} href="{% include relative-src.html src=link.link %}" {% if link.social_icon %}class="{{ link.social_icon }}-icon"{% endif %}>
|
|
{% if link.social_icon %}
|
|
{% include social-icon.html icon=link.social_icon %}
|
|
{% endif %}
|
|
{{ link.name }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endfor %}
|
|
</div>
|
|
<p class="copyright">SVG icons courtesy of <a href="https://fontawesome.com/">FontAwesome</a> (<a href="https://fontawesome.com/license">license</a>)</p>
|
|
</div>
|
|
</footer>
|
|
<!-- comment this if/when we add navigation -->
|
|
<script>
|
|
document.getElementById("open-nav").onclick = function () {
|
|
document.body.classList.toggle("nav-open");
|
|
return false;
|
|
};
|
|
</script>
|
|
<!-- <script type="text/javascript">
|
|
var _paq = window._paq || [];
|
|
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
|
|
_paq.push(["setDocumentTitle", document.domain + "/" + document.title]);
|
|
_paq.push(["setCookieDomain", "*.ohmyform.com"]);
|
|
_paq.push(["setDomains", ["*.ohmyform.com"]]);
|
|
_paq.push(['trackPageView']);
|
|
_paq.push(['enableLinkTracking']);
|
|
(function() {
|
|
var u="//metrics.ohmyform.com/";
|
|
_paq.push(['setTrackerUrl', u+'matomo.php']);
|
|
_paq.push(['setSiteId', '1']);
|
|
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
|
|
g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
|
|
})();
|
|
</script>
|
|
<noscript><p><img src="//metrics.ohmyform.com/matomo.php?idsite=1&rec=1" style="border:0;" alt="" /></p></noscript> -->
|
|
</body>
|
|
</html>
|