Skip to content

Commit 072fc1b

Browse files
committed
no message
1 parent f2a1c8a commit 072fc1b

File tree

2 files changed

+66
-0
lines changed

2 files changed

+66
-0
lines changed

_layouts/default.html

+61
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
<!doctype html>
2+
<html lang="{{ site.lang | default: "en-US" }}">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta http-equiv="X-UA-Compatible" content="chrome=1">
6+
7+
{% seo %}
8+
9+
<link href='https://fonts.googleapis.com/css?family=Lato:300italic,700italic,300,700' rel='stylesheet' type='text/css'>
10+
<link rel="stylesheet" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}">
11+
<script src="{{ '/assets/js/scale.fix.js' | relative_url }}"></script>
12+
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
13+
14+
<!--[if lt IE 9]>
15+
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
16+
<![endif]-->
17+
</head>
18+
<body>
19+
<div class="wrapper">
20+
<header {% unless site.description or site.github.project_tagline %} class="without-description" {% endunless %}>
21+
<h1>{{ site.title | default: site.github.repository_name }}</h1>
22+
{% if site.description or site.github.project_tagline %}
23+
<p>{{ site.description | default: site.github.project_tagline }}</p>
24+
{% endif %}
25+
<p class="view"><a href="{{ site.github.repository_url }}">View the Project on GitHub <small>{{ github_name }}</small></a></p>
26+
<ul>
27+
{% if site.show_downloads %}
28+
<li><a href="{{ site.github.zip_url }}">Download <strong>ZIP File</strong></a></li>
29+
<li><a href="{{ site.github.tar_url }}">Download <strong>TAR Ball</strong></a></li>
30+
{% endif %}
31+
<li><a href="{{ site.github.repository_url }}">View On <strong>GitHub</strong></a></li>
32+
</ul>
33+
</header>
34+
<section>
35+
36+
{{ content }}
37+
38+
</section>
39+
</div>
40+
<!--
41+
<footer>
42+
{% if site.github.is_project_page %}
43+
<p>Project maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a></p>
44+
{% endif %}
45+
<p>Hosted on GitHub Pages &mdash; Theme by <a href="https://github.com/orderedlist">orderedlist</a></p>
46+
</footer>
47+
-->
48+
<!--[if !IE]><script>fixScale(document);</script><![endif]-->
49+
50+
{% if site.google_analytics %}
51+
<script type="text/javascript">
52+
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
53+
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
54+
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
55+
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
56+
ga('create', '{{ site.google_analytics }}', 'auto');
57+
ga('send', 'pageview');
58+
</script>
59+
{% endif %}
60+
</body>
61+
</html>

assets/css/style.scss

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
---
3+
4+
@import "{{ site.theme }}";
5+

0 commit comments

Comments
 (0)