Skip to content

Commit

Permalink
Vendor custom layout.
Browse files Browse the repository at this point in the history
  • Loading branch information
whitequark committed Oct 25, 2020
1 parent e5b1ef5 commit fbea2ac
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 1 deletion.
1 change: 0 additions & 1 deletion _config.yml
Expand Up @@ -4,7 +4,6 @@ github:
repository_url: https://github.com/YoWASP
owner_name: whitequark
owner_url: mailto:whitequark@whitequark.org
is_project_page: true # show footer

markdown: kramdown
theme: jekyll-theme-slate
37 changes: 37 additions & 0 deletions _layouts/default.html
@@ -0,0 +1,37 @@
<!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 }}">

{% seo %}
</head>

<body>
<!-- HEADER -->
<div id="header_wrap" class="outer">
<header class="inner">
<a id="forkme_banner" href="{{ site.github.repository_url }}">View on GitHub</a>
<h1 id="project_title">{{ site.title | default: site.github.repository_name }}</h1>
<h2 id="project_tagline">{{ site.description | default: site.github.project_tagline }}</h2>
</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">
<p class="copyright">{{ site.title | default: site.github.repository_name }} maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a></p>
</footer>
</div>
</body>
</html>

0 comments on commit fbea2ac

Please sign in to comment.