Skip to content

Commit 813c3f5

Browse files
author
Nicholas Car
committed
slim theme template
1 parent 21b776e commit 813c3f5

File tree

3 files changed

+37
-0
lines changed

3 files changed

+37
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Mac
2+
.DS_Store

_layouts/slim.html

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="viewport" content="width=device-width, initial-scale=1">
7+
8+
{% seo %}
9+
<link rel="stylesheet" href="{{ "/assets/css/style.css?v=" | append: site.github.build_revision | relative_url }}">
10+
</head>
11+
<body>
12+
<div class="container-lg px-3 my-5 markdown-body">
13+
14+
{{ content }}
15+
16+
{% if site.github.private != true and site.github.license %}
17+
<div class="footer border-top border-gray-light mt-5 pt-3 text-right text-gray">
18+
This site is open source. {% github_edit_link "Improve this page" %}.
19+
</div>
20+
{% endif %}
21+
</div>
22+
<script src="https://cdnjs.cloudflare.com/ajax/libs/anchor-js/4.1.0/anchor.min.js" integrity="sha256-lZaRhKri35AyJSypXXs4o6OPFTbTmUoltBbDCbdzegg=" crossorigin="anonymous"></script>
23+
<script>anchors.add();</script>
24+
{% if site.google_analytics %}
25+
<script>
26+
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
27+
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
28+
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
29+
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
30+
ga('create', '{{ site.google_analytics }}', 'auto');
31+
ga('send', 'pageview');
32+
</script>
33+
{% endif %}
34+
</body>
35+
</html>

style/logo-rdflib.ico

3.19 KB
Binary file not shown.

0 commit comments

Comments
 (0)