mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-15 23:04:08 +10:00
I don't feel so good mr stark
This commit is contained in:
@@ -1,13 +0,0 @@
|
|||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
||||||
<link rel="stylesheet" href="{{ "/assets/css/style.css" | relative_url }}">
|
|
||||||
{%- feed_meta -%}
|
|
||||||
{%- if jekyll.environment == 'production' and site.google_analytics -%}
|
|
||||||
{%- include google-analytics.html -%}
|
|
||||||
{%- endif -%}
|
|
||||||
|
|
||||||
{%- include custom-head.html -%}
|
|
||||||
|
|
||||||
</head>
|
|
||||||
51
_layouts/default.html
Normal file
51
_layouts/default.html
Normal file
@@ -0,0 +1,51 @@
|
|||||||
|
<!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">
|
||||||
|
<link rel="stylesheet" type="text/css" media="screen" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}">
|
||||||
|
|
||||||
|
{% include head-custom.html %}
|
||||||
|
</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 %}
|
||||||
|
<p>Published with <a href="https://pages.github.com">GitHub Pages</a></p>
|
||||||
|
</footer>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
Reference in New Issue
Block a user