Skip to content

Commit 1824dad

Browse files
committed
Implement new designe
1 parent e59bf67 commit 1824dad

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+11885
-671
lines changed

404.html

-10
This file was deleted.

LICENSE.md

-9
This file was deleted.

_config.yml

+144-12
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,145 @@
1-
# Permalinks
2-
permalink: pretty
3-
4-
# Setup
5-
title: Radio Pi
6-
tagline: An easy way to stream!
7-
url: http://radio-pi.github.io
8-
paginate: 1
9-
baseurl: /
1+
# --- General options --- #
2+
3+
# url is the full website URL
4+
# baseurl is the website's URL without the hostname
5+
6+
# If you are building a simple GitHub user page (http://username.github.io) then use these settings:
7+
url: "http://radio-pi.github.io"
8+
baseurl: ""
9+
10+
# If you are building a GitHub project page then use these settings:
11+
#url: "http://username.github.io/projectname"
12+
#baseurl: "/projectname"
13+
14+
# Of course don't forget to change the username and projectname to YOUR username and project
15+
16+
# Name of website
17+
title: Radio Pi
18+
19+
# Short description of your site
20+
description: Radio Pi - Transforme your Rapberry Pi in a Radio!
21+
22+
# --- Navigation bar options --- #
23+
24+
# List of links in the navigation bar
25+
navbar-links:
26+
#About Me: "aboutme"
27+
#Resources:
28+
# - Beautiful Jekyll: "http://deanattali.com/beautiful-jekyll/"
29+
# - Learn markdown: "http://www.markdowntutorial.com/"
30+
# - GitHub Pages: "https://pages.github.com/"
31+
About l33tname: "https://l33t.name"
32+
33+
# Image to show in the navigation bar - image must be a square (width = height)
34+
# Remove this parameter if you don't want an image in the navbar
35+
avatar: "/img/avatar-icon.png"
36+
37+
# If you want to have an image logo in the top-left corner instead of the title text,
38+
# then specify the following parameter
39+
# title-img: /path/to/image
40+
41+
# --- Footer options --- #
42+
43+
# Change all these values or delete the ones you don't want.
44+
# Important: you must keep the "name" parameter, everything else you can remove
1045
author:
11-
name: Sir l33tname
12-
url: https://l33t.name
13-
46+
name: Sir l33tname
47+
48+
#facebook: yourname # eg. daattali
49+
#github: yourname # eg. daattali
50+
#twitter: yourname # eg. daattali
51+
#reddit: yourname # eg. daattali
52+
#google-plus: +yourname # eg. +DeanAttali or 109424658772469020925
53+
#linkedin: yourname # eg. daattali
54+
#xing: yourname # eg. daattali
55+
#stackoverflow: yourlink # eg. "3943160/daattali"
56+
#snapchat: yourname # eg. daattali
57+
#instagram: yourname # eg. daattali
58+
#youtube: yourlink # eg. user/daattali or channel/daattali
59+
#spotify: yourname # eg. daattali
60+
#telephone: yourphone # eg. +14159998888
61+
62+
# Select which links to show in the footer
63+
footer-links-active:
64+
rss: false
65+
facebook: true
66+
email: true
67+
twitter: true
68+
google-plus: false
69+
github: true
70+
reddit: false
71+
linkedin: false
72+
xing: false
73+
stackoverflow: false
74+
snapchat: false
75+
instagram: false
76+
youtube: false
77+
spotify: false
78+
telephone: false
79+
80+
# Select which share links to show in posts
81+
share-links-active:
82+
twitter: true
83+
facebook: true
84+
google: false
85+
linkedin: false
86+
87+
# How to display the link to the website in the footer
88+
# Remove this if you don't want a link in the footer
89+
url-pretty: "radio-pi.github.io" # eg. "deanattali.com/beautiful-jekyll"
90+
91+
# --- Misc --- #
92+
# Fill in your Disqus shortname (NOT the userid) if you want to support Disqus comments
93+
#disqus: ""
94+
95+
# piwik tracking
96+
piwik_analytics: true
97+
98+
# Facebook App ID
99+
# fb_app_id: ""
100+
101+
# Excerpt Word Length
102+
# Truncates the excerpt to the specified number of words on the index page
103+
excerpt_length: 50
104+
105+
# Character used to separate site title and description in HTML document title
106+
# and RSS feed title
107+
title-separator: "-"
108+
109+
# --- Don't need to touch anything below here (but you can if you want) --- #
110+
111+
# Output options (more information on Jekyll's site)
112+
timezone: "America/Vancouver"
113+
markdown: kramdown
114+
highlighter: rouge
115+
permalink: /:year-:month-:day-:title/
116+
paginate: 5
117+
118+
kramdown:
119+
input: GFM
120+
121+
# Default YAML values (more information on Jekyll's site)
122+
defaults:
123+
-
124+
scope:
125+
path: ""
126+
type: "posts"
127+
values:
128+
layout: "post"
129+
comments: true # add comments to all blog posts
130+
social-share: true # add social media sharing buttons to all blog posts
131+
-
132+
scope:
133+
path: "" # all files
134+
values:
135+
layout: "page"
136+
show-avatar: true
137+
138+
# Use tags pages (not recommended if you are deploying via GitHub pages, only set to true if deploying locally with ruby)
139+
link-tags: false
140+
141+
gems:
142+
- jekyll-paginate
143+
144+
# Beautiful Jekyll / Dean Attali
145+
# 2fc73a3a967e97599c9763d05e564189

_includes/disqus.html

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{% if site.disqus %}
2+
<div class="comments">
3+
<div id="disqus_thread"></div>
4+
<script type="text/javascript">
5+
var disqus_shortname = '{{ site.disqus }}';
6+
/* ensure that pages with query string get the same discussion */
7+
var url_parts = window.location.href.split("?");
8+
var disqus_url = url_parts[0];
9+
(function() {
10+
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
11+
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
12+
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
13+
})();
14+
</script>
15+
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
16+
</div>
17+
{% endif %}

_includes/footer-minimal.html

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<footer class="footer-min">
2+
<div class="text-muted">
3+
{{ site.author.name }}
4+
&nbsp;&nbsp;&bull;&nbsp;&nbsp;
5+
{% if page.date %}
6+
{{ page.date }}
7+
{% else %}
8+
{{ site.time | date: '%Y' }}
9+
{% endif %}
10+
11+
{% if site.url-pretty %}
12+
&nbsp;&nbsp;&bull;&nbsp;&nbsp;
13+
<a href="{{ site.url }}">{{ site.url-pretty }}</a>
14+
{% endif %}
15+
</div>
16+
</footer>

_includes/footer-scripts.html

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{% if layout.common-ext-js %}
2+
{% for js in layout.common-ext-js %}
3+
<script src="{{ js }}"></script>
4+
{% endfor %}
5+
{% endif %}
6+
7+
{% if page.ext-js %}
8+
{% for js in page.ext-js %}
9+
<script src="{{ js }}"></script>
10+
{% endfor %}
11+
{% endif %}
12+
13+
{% if page.js %}
14+
{% for js in page.js %}
15+
<script src="{{ js | prepend: site.baseurl | replace: '//', '/' }}"></script>
16+
{% endfor %}
17+
{% endif %}
18+
19+
{% if layout.common-js %}
20+
{% for js in layout.common-js %}
21+
<!-- doing something a bit funky here because I want to be careful not to include JQuery twice! -->
22+
{% if js contains 'jquery' %}
23+
<script>
24+
if (typeof jQuery == 'undefined') {
25+
document.write('<script src="{{ js | prepend: site.baseurl | replace: "//", "/" }}"></scr' + 'ipt>');
26+
}
27+
</script>
28+
{% else %}
29+
<script src="{{ js | prepend: site.baseurl | replace: '//', '/' }}"></script>
30+
{% endif %}
31+
{% endfor %}
32+
{% endif %}
33+
34+
{% include piwik_analytics.html %}

0 commit comments

Comments
 (0)