Skip to content

Commit 3e9319e

Browse files
committed
rm themes n links
1 parent e8bf217 commit 3e9319e

15 files changed

+48
-45
lines changed

_config.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
###########
2-
# site.url, site.title
2+
# site.title, site.url, site.path
33

4-
url: 'http://planetjekyll.github.io'
54
title: 'Planet Jekyll'
65

6+
## note: in path do NOT include root (trailing slash) e.g. (/) - use empty string instead
7+
path: ''
8+
url: 'http://planetjekyll.github.io'
9+
10+
711
########
812
# more settings
913

@@ -25,10 +29,6 @@ include:
2529

2630
exclude:
2731
- README.md
28-
- _data/links/README.md
29-
- _data/links/attic
30-
- _data/themes/README.md
31-
- _data/themes/attic
3232
- _snippets/README.md
3333
- attic
3434

_layouts/cards.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<meta charset="utf-8">
55
<title>{{ page.title }} - {{ site.title }}</title>
6-
<link rel="stylesheet" type="text/css" href="{{ site.url }}/css/style.css" >
6+
<link rel="stylesheet" href="{{ site.path }}/css/style.css" >
77
</head>
88
<body style='margin: 0;'>
99

_layouts/default.html

+6-12
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,9 @@
33
<head>
44
<meta charset="utf-8">
55
<title>{{ page.title }} - {{ site.title }}</title>
6-
<link rel="stylesheet" type="text/css" href="{{ site.url }}/css/style.css" >
6+
<link rel="stylesheet" href="{{ site.path }}/css/style.css" >
77
<!--
8-
<link rel="alternate" type="application/atom+xml" href="{{ site.url }}/themes/feed.xml" title="Jekyll Themes News Feed">
9-
<link rel="alternate" type="application/atom+xml" href="{{ site.url }}/snippets/feed.xml" title="Jekyll Snippets (Tips 'n' Tricks) News Feed">
10-
<link rel="alternate" type="application/atom+xml" href="{{ site.url }}/feed.xml" title="Jekyll Links 'n' Bookmarks News Feed">
8+
<link rel="alternate" type="application/atom+xml" href="{{ site.url }}/feed.xml" title="Jekyll Snippets (Tips 'n' Tricks) News Feed">
119
-->
1210
</head>
1311
<body style='margin: 0;'>
@@ -17,15 +15,13 @@
1715
<!-- wrap in container -->
1816
<div style='margin: 6px;'>
1917
<div id="nav">
20-
<a href="{{ site.url }}">Planet Jekyll Welcome</a>
18+
<a href="{{ site.path }}/">Planet Jekyll Welcome</a>
2119

2220
<a href="http://planetjekyll.herokuapp.com">Planet Jekyll News Reader</a>
2321

24-
<a href="{{ site.url }}/themes">Jekyll Theme of the Month Series</a>
22+
<a href="http://drjekyllthemes.github.io">Jekyll Theme Directory</a>
2523

26-
<a href="{{ site.url }}/snippets">Jekyll Snippets (Tips &amp; Tricks)</a>
27-
28-
<a href="{{ site.url }}/links">Jekyll Links &amp; Bookmarks</a>
24+
<a href="{{ site.path }}/snippets">Jekyll Snippets (Tips &amp; Tricks)</a>
2925

3026
<a href="https://github.com/planetjekyll/quickrefs/blob/master/JEKYLL.md">Jekyll Quick Reference (Cheat Sheet)</a>
3127

@@ -35,9 +31,7 @@
3531

3632
<a href="https://github.com/planetjekyll">Repos (Edit Me!)</a>
3733

38-
<!--
39-
<a href="http://groups.google.com/group/feedreader">Forum (Questions? Comments?)</a>
40-
-->
34+
<a href="https://talk.jekyllrb.com">Questions? Comments?</a>
4135
</div>
4236

4337
{% include announce.html %}

_layouts/snippet.html

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
layout: default
33
---
4+
45
<div class="post">
56

67
<header class="post-header">
File renamed without changes.
File renamed without changes.

attic/_layouts/link.html

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
layout: default
33
---
4+
45
<div class="post">
56

67
<header class="post-header">

attic/_layouts/theme.html

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
layout: default
33
---
4+
45
<div class="post">
56

67
<header class="post-header">

attic/index.html

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
2+
<div>
3+
<h2><a href="http://planetjekyll.github.io/links">Jekyll Links &amp; Bookmarks »</a></h2>
4+
<ul>
5+
{% for link in site.data.links.jekyll limit:3 %}
6+
<li>{{ link.title }}</li>
7+
{% endfor %}
8+
<li>and many more</li>
9+
</ul>
10+
</div>
11+

attic/links/feed.xml

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
layout: null
33
---
4+
45
<?xml version="1.0" encoding="utf-8"?>
56
<feed xmlns="http://www.w3.org/2005/Atom">
67
<title>Jekyll Links 'n' Bookmarks | {{ site.title }}</title>

links/index.html renamed to attic/links/index2.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
---
1+
<!--
22
layout: default
33
title: "Jekyll Links 'n' Bookmarks"
4-
---
4+
-->
55

66
<!--
77
<p>

attic/snippets/feed.xml

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
layout: null
33
---
4+
45
<?xml version="1.0" encoding="utf-8"?>
56
<feed xmlns="http://www.w3.org/2005/Atom">
67
<title>Jekyll Snippets (Tips 'n' Tricks) | {{ site.title }}</title>

attic/themes/feed.xml

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
layout: null
33
---
4+
45
<?xml version="1.0" encoding="utf-8"?>
56
<feed xmlns="http://www.w3.org/2005/Atom">
67
<title>Jekyll Theme of the Month | {{ site.title }}</title>

themes/index.html renamed to attic/themes/index2.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
---
1+
<!--
22
layout: default
33
title: Jekyll Theme of the Month Series
4-
---
4+
-->
55

66
<!--
77
<p>

index.html

+14-22
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,16 @@ <h2><a href="http://planetjekyll.herokuapp.com">Planet Jekyll News Reader »</a>
2323
</div>
2424

2525
<div>
26-
<h2><a href="http://planetjekyll.github.io/themes">Jekyll Theme of the Month Series »</a></h2>
26+
<h2><a href="http://drjekyllthemes.github.io">Jekyll Theme Directory @ Dr. Jekyll's »</a></h2>
2727
<ul>
28-
{% for theme in site.data.themes.themes limit:3 %}
29-
<li>{{ theme.title }}</li>
30-
{% endfor %}
28+
<li>Minimalist Theme</li>
29+
<li>Bootstrap Theme</li>
30+
<li>Classics Book Theme</li>
3131
<li>and many more</li>
3232
</ul>
3333
</div>
3434

35+
3536
<div>
3637
<h2><a href="http://planetjekyll.github.io/themes">Jekyll Snippets (Tips &amp; Tricks) »</a></h2>
3738
<ul>
@@ -42,13 +43,22 @@ <h2><a href="http://planetjekyll.github.io/themes">Jekyll Snippets (Tips &amp; T
4243
</ul>
4344
</div>
4445

46+
<div>
47+
<h2><a href="https://github.com/planetjekyll/quickrefs/blob/master/JEKYLL.md">Jekyll Quick Reference »</a></h2>
48+
<p>
49+
Jekyll Commands, Folder Structure, Global Variables, Site Variables, Page Variable,
50+
Liquid Template Filters 'n' Tags and more
51+
</p>
52+
</div>
53+
4554
<div>
4655
<h2><a href="https://github.com/planetjekyll/awesome-jekyll">Awesome Jekyll »</a></h2>
4756
<p>
4857
A collection of awesome Jekyll goodies (tools, templates, plugins, guides, etc.)
4958
</p>
5059
</div>
5160

61+
5262
<div>
5363
<h2><a href="https://github.com/writekit/awesome-markdown">Awesome Markdown @ WriteKit »</a></h2>
5464
<p>
@@ -63,23 +73,5 @@ <h2><a href="https://github.com/writekit/awesome-books">Awesome Books @ WriteKit
6373
</p>
6474
</div>
6575

66-
<div>
67-
<h2><a href="http://planetjekyll.github.io/links">Jekyll Links &amp; Bookmarks »</a></h2>
68-
<ul>
69-
{% for link in site.data.links.jekyll limit:3 %}
70-
<li>{{ link.title }}</li>
71-
{% endfor %}
72-
<li>and many more</li>
73-
</ul>
74-
</div>
75-
76-
<div>
77-
<h2><a href="https://github.com/planetjekyll/quickrefs/blob/master/JEKYLL.md">Jekyll Quick Reference »</a></h2>
78-
<p>
79-
Jekyll Commands, Folder Structure, Global Variables, Site Variables, Page Variable,
80-
Liquid Template Filters 'n' Tags and more
81-
</p>
82-
</div>
83-
8476

8577
</div><!-- cards -->

0 commit comments

Comments
 (0)