Skip to main content
Module

x/fastro/_layouts/default.html

Fast and simple web application framework for deno
Go to Latest
File
<!DOCTYPE html><html lang="{{ site.lang | default: "en-US" }}">
<head> <meta charset='utf-8'> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width,maximum-scale=2">
<title>{{ site.title }} | {{ site.description }}</title> <meta name="description" content="Made for developers who are obsessed with simplicity and maximum performance. It is inspired by Express &amp; Fastify. Contribute to fastro development by creating an account on GitHub." /> <meta property="og:locale" content="en_US" /> <meta property="og:title" content="{{ site.title }} | {{ site.description }}" /> <link rel="canonical" href="https://fastro.dev/" /> <meta property="og:site_name" content="Fastro" /> <meta property="og:type" content="object" /> <meta property="og:url" content="https://fastro.dev" /> <meta property="og:image" content="https://repository-images.githubusercontent.com/264308713/41a89380-bae7-11ea-8f5f-31e6cfe5ad53" /> <meta property="og:description" content="Made for developers who are obsessed with simplicity and maximum performance. It is inspired by Express &amp; Fastify. Contribute to fastro development by creating an account on GitHub." /> <script type="application/ld+json"> {"@type":"WebSite","headline":"Fastro","url":"https://fastro.dev/","name":"Fastro","description":"Fast and simple web framework for deno","@context":"https://schema.org"}</script>
<meta name="twitter:image:src" content="https://repository-images.githubusercontent.com/264308713/41a89380-bae7-11ea-8f5f-31e6cfe5ad53" /> <meta name="twitter:site" content="Fastro" /> <meta name="twitter:card" content="summary_large_image" /> <meta name="twitter:title" content="{{ site.title }} | {{ site.description }}" /> <meta name="twitter:description" content="Made for developers who are obsessed with simplicity and maximum performance.. It is inspired by Express &amp; Fastify. Contribute to fastro development by creating an account on GitHub." /> <link rel="stylesheet" type="text/css" media="screen" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}">
</head>
<body>
<!-- HEADER --> <div id="header_wrap" class="outer"> <header class="inner"> {% if site.github.is_project_page %} <a id="forkme_banner" href="{{ site.github.repository_url }}">View on GitHub</a> {% endif %}
<h1 id="project_title">{{ site.title | default: site.github.repository_name }}</h1> <h2 id="project_tagline">{{ site.description | default: site.github.project_tagline }}</h2>
{% if site.show_downloads %} <section id="downloads"> <a class="zip_download_link" href="{{ site.github.zip_url }}">Download this project as a .zip file</a> <a class="tar_download_link" href="{{ site.github.tar_url }}">Download this project as a tar.gz file</a> </section> {% endif %} </header> </div>
<!-- MAIN CONTENT --> <div id="main_content_wrap" class="outer"> <section id="main_content" class="inner"> {{ content }} </section> </div>
<!-- FOOTER --> <div id="footer_wrap" class="outer"> <footer class="inner"> {% if site.github.is_project_page %} <p class="copyright">{{ site.title | default: site.github.repository_name }} maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a></p> {% endif %} </footer> </div>
{% if site.google_analytics %} <script> (function (i, s, o, g, r, a, m) { i['GoogleAnalyticsObject'] = r; i[r] = i[r] || function () { (i[r].q = i[r].q || []).push(arguments) }, i[r].l = 1 * new Date(); a = s.createElement(o), m = s.getElementsByTagName(o)[0]; a.async = 1; a.src = g; m.parentNode.insertBefore(a, m) })(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga'); ga('create', '{{ site.google_analytics }}', 'auto'); ga('send', 'pageview'); </script> {% endif %}</body>
</html>