fix: add proper link to github source, include descriptions and pages and posts, reduce overall padding
This commit is contained in:
parent
9750909df3
commit
852b465f19
|
@ -5,7 +5,7 @@
|
|||
<span>·</span>
|
||||
<a href="/atom.xml">RSS</a>
|
||||
<span>·</span>
|
||||
<a href="">Source on Github</a>
|
||||
<a href="https://github.com/bradleytaunt/lightspeed">Source on Github</a>
|
||||
</nav>
|
||||
<small>
|
||||
Built with <a href="https://jekyllrb.com/">Jekyll</a> & hosted on <a href="https://netlify.com">Netlify</a>.<br>
|
||||
|
|
|
@ -15,5 +15,5 @@
|
|||
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ site.baseurl }}/public/apple-touch-icon-precomposed.png">
|
||||
<link rel="shortcut icon" href="{{ site.baseurl }}/public/favicon.ico">
|
||||
<link rel="alternate" type="application/atom+xml" title="{{ site.title }}" href="{{ site.baseurl }}/atom.xml">
|
||||
<style>html,body{background:#fffaf7;color:#2d2d2d;font:16px/1.5 -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";}a,a:visited{color:darkred;text-decoration:none;}a:hover{text-decoration:underline;}main{margin:auto;max-width:38rem;padding:2rem;}pre{background:white;overflow:scroll;padding:1rem;}td{border:1px solid #2d2d2d;padding:10px;}img{max-width:100%;}</style>
|
||||
<style>html,body{background:#fffaf7;color:#2d2d2d;font:16px/1.5 -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";}a,a:visited{color:darkred;text-decoration:none;}a:hover{text-decoration:underline;}main{margin:auto;max-width:38rem;padding:0.8rem;}pre{background:white;overflow:scroll;padding:1rem;}td{border:1px solid #2d2d2d;padding:10px;}img{max-width:100%;}</style>
|
||||
</head>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<header role="banner">
|
||||
<h3 class="masthead-title">
|
||||
<h3 style="margin-top:0;">
|
||||
<a href="{{ site.baseurl }}/" title="Home">{{ site.title }}</a>
|
||||
<br><small>{{ site.tagline }}</small>
|
||||
</h3>
|
||||
|
|
|
@ -10,17 +10,6 @@
|
|||
{{ content }}
|
||||
{% include footer.html %}
|
||||
</main>
|
||||
|
||||
{% if site.analytics_id %}
|
||||
<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.analytics_id }}', 'auto');
|
||||
ga('send', 'pageview');
|
||||
</script>
|
||||
{% endif %}
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
layout: default
|
||||
---
|
||||
|
||||
<article class="page">
|
||||
<h1 class="page-title">{{ page.title }}</h1>
|
||||
<article>
|
||||
<h1>{{ page.title }}</h1>
|
||||
{{ content }}
|
||||
</article>
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
---
|
||||
layout: post
|
||||
title: Hello World!
|
||||
description: Post about hello world
|
||||
---
|
||||
|
||||
Hello World!
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
---
|
||||
layout: post
|
||||
title: Using the Web Icons
|
||||
description: Post about using web icons
|
||||
---
|
||||
|
||||
This template uses [Typicons][ty] web font, provided by [Fontello][fo] font bundling service. It allows you to quickly add nice icons into your pages by using css tags.
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
---
|
||||
layout: post
|
||||
title: Code Snippets
|
||||
description: Post about code snippets
|
||||
---
|
||||
|
||||
Whenever you need to post a code snippet, use the liquid tags `hilight` and `endhilight` like this:
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
---
|
||||
layout: post
|
||||
title: Example of all elements
|
||||
description: Post showcasing all elements
|
||||
---
|
||||
|
||||
# h1 Heading
|
||||
|
|
Loading…
Reference in a new issue