jekyll-theme-terminal 0.2.9 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +6 -1
- data/_includes/footer.html +0 -1
- data/_includes/head.html +1 -1
- data/_includes/header.html +5 -1
- data/_layouts/home.html +12 -3
- data/_layouts/page.html +0 -1
- data/_layouts/post.html +1 -0
- data/_sass/jekyll-theme-terminal/_base.scss +2 -2
- data/_sass/jekyll-theme-terminal/_cat.scss +6 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1ec3b950e6f95548505b801437f96b2bfb183aa1
|
|
4
|
+
data.tar.gz: ba9cf5006c21b0859acbb507b9c5701510fe7015
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fd352b5a59cb378398bcf389323b70977a0d71d23aa2e62b0b2723bc678006ec80926006b72fe7a615e82d0c80ad84d8375f5c5fb03212a6c895e4b36fb7c77f
|
|
7
|
+
data.tar.gz: a64790e650e3a4f7946b83b66f5a84969752e012a204f5ee667022c4189385035707d18b35a6889559d2f362db2d00abff3055f96978ec419508c7cfe6a7edc5
|
data/README.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# jekyll-theme-terminal
|
|
2
2
|
|
|
3
|
+
*** Currently in ALPHA ***
|
|
4
|
+
|
|
5
|
+
Sadly the main.css is not linking correctly and some minor tweaks are needed to display posts.
|
|
6
|
+
Currently posts will only be visible via the whois link, which is kind of weird :)
|
|
7
|
+
|
|
3
8
|
Welcome to your new jekyll-theme-terminal Layout.
|
|
4
9
|
Currently still in development, but working hard on it.
|
|
5
10
|
|
|
@@ -11,7 +16,7 @@ BUGS: Problems adding the missing stylesheets and layouts :-/
|
|
|
11
16
|
Add this line to your Jekyll site's `Gemfile`:
|
|
12
17
|
|
|
13
18
|
```ruby
|
|
14
|
-
gem "jekyll-theme-terminal", "~>0.2.
|
|
19
|
+
gem "jekyll-theme-terminal", "~>0.2.9"
|
|
15
20
|
```
|
|
16
21
|
|
|
17
22
|
And add this line to your Jekyll site's `_config.yml`:
|
data/_includes/footer.html
CHANGED
data/_includes/head.html
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<title>{% if page.title %}{{ page.title | escape }} {% else %}{{ site.title | escape }}{% endif %}</title>
|
|
7
7
|
<meta name="description" content="{{ page.excerpt | default: site.description | strip_html | normalize_whitespace | truncate: 160 | escape}}">
|
|
8
8
|
|
|
9
|
-
<link rel="stylesheet" href="{{ '/assets/main.css'
|
|
9
|
+
<link rel="stylesheet" href="{{ '/assets/main.css' }}">
|
|
10
10
|
<link rel="canonical" href="{{ page.url | replace:'index.html','' | absolute_url }}">
|
|
11
11
|
|
|
12
12
|
<!--[if lt IE9>
|
data/_includes/header.html
CHANGED
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
<header class="site-header">
|
|
2
2
|
<h4>[{{site.author}}@{{ site.url | escape }} ~]$</h4>
|
|
3
|
-
<
|
|
3
|
+
<div class="inline"><a href="/about/">whois</a></div>
|
|
4
|
+
<h4>cat <a href="/">
|
|
5
|
+
{% if page.title %}{{ page.title | escape }} {% else %}{{ site.title | escape }}{% endif %}
|
|
6
|
+
</a>
|
|
7
|
+
</h4>
|
|
4
8
|
</header>
|
data/_layouts/home.html
CHANGED
|
@@ -1,13 +1,22 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
|
-
|
|
3
2
|
{% include head.html %}
|
|
4
|
-
|
|
5
3
|
<body>
|
|
6
4
|
{% include header.html%}
|
|
7
5
|
<div class="wrapper">
|
|
8
|
-
|
|
6
|
+
<center><h3>127.0.0.1</h3><center>
|
|
7
|
+
Hi there,
|
|
8
|
+
</br></br>
|
|
9
|
+
I hope you like the theme so far, sorry for the initial bugs, we are still working on improvements.</br>
|
|
10
|
+
Feel free to add some stuff to the _layouts/home.html in order to get rid of this annoying content.
|
|
11
|
+
|
|
12
|
+
Otherwise enjoy and feel free to contact me.
|
|
13
|
+
Don't forget to add a site.author variable to your _config.yml in order to fill the user name in the upper and lower rows.
|
|
14
|
+
</br></br>
|
|
15
|
+
Take care, </br></br>
|
|
16
|
+
Squifi.
|
|
9
17
|
{{ content }}
|
|
10
18
|
</div>
|
|
19
|
+
<h4>[{{site.author}}@{{ site.url | escape }} ~]$ <a href="/">cd ~</a></h4>
|
|
11
20
|
{% include footer.html %}
|
|
12
21
|
</body>
|
|
13
22
|
</html>
|
data/_layouts/page.html
CHANGED
data/_layouts/post.html
CHANGED
|
@@ -13,9 +13,9 @@ body {
|
|
|
13
13
|
color: $cat-color;
|
|
14
14
|
font-family: $font-family;
|
|
15
15
|
margin: $zero-distance auto;
|
|
16
|
-
padding: $
|
|
16
|
+
padding: $zero-distance;
|
|
17
17
|
font-size: $base-font-size;
|
|
18
|
-
margin-left: $
|
|
18
|
+
margin-left: $zero-distance;
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
a {
|