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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: abf7e2ea07661bc4a9c4bcf9e0aa9d87e319945a
4
- data.tar.gz: b3775b3e6ab4e729aed747ddd9c26136a9b59248
3
+ metadata.gz: 1ec3b950e6f95548505b801437f96b2bfb183aa1
4
+ data.tar.gz: ba9cf5006c21b0859acbb507b9c5701510fe7015
5
5
  SHA512:
6
- metadata.gz: bab02054125c90cbe4e78f93f8fbcce547e69e7f3cfecfab24332910722bd94f8de2f76a6252509b112678e28aedd0d212ba2cb972ed27c3facf42b0e5933065
7
- data.tar.gz: 488233915065d7013b93695b8b44ddfd48cb0d6369cb66ad6447fdee8114ae0f8546c5eaf49720167966b5a1e234a500ba497b3e0fb14cae94faf3337ef7a1c0
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.1"
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`:
@@ -3,5 +3,4 @@
3
3
  <pre>-- INSERT -- wc:{{ page.content | number_of_words }} -{{ site.time | date_to_long_string }}- made by {{site.author}}.sh
4
4
  </pre>
5
5
  </p>
6
- <a href="/about/">whois</a>
7
6
  </footer>
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' | relative_url }}">
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>
@@ -1,4 +1,8 @@
1
1
  <header class="site-header">
2
2
  <h4>[{{site.author}}@{{ site.url | escape }} ~]$</h4>
3
- <h4>cat <a href="/">{% if page.title %}{{ page.title | escape }} {% else %}{{ site.title | escape }}{% endif %}</a></h4>
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
- <h3>127.0.0.1</h3>
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
@@ -1,7 +1,6 @@
1
1
  ---
2
2
  layout: default
3
3
  ---
4
-
5
4
  <section>
6
5
  {% for item in site.posts %}
7
6
  <article class="ls">
data/_layouts/post.html CHANGED
@@ -10,4 +10,5 @@ layout: default
10
10
  {{ content }}
11
11
  </p>
12
12
  </article>
13
+ <h4>[{{site.author}}@{{ site.url | escape }} ~]$ <a href="/">cd ~</a></h4>
13
14
  </section>
@@ -13,9 +13,9 @@ body {
13
13
  color: $cat-color;
14
14
  font-family: $font-family;
15
15
  margin: $zero-distance auto;
16
- padding: $normal-distance;
16
+ padding: $zero-distance;
17
17
  font-size: $base-font-size;
18
- margin-left: $normal-distance;
18
+ margin-left: $zero-distance;
19
19
  }
20
20
 
21
21
  a {
@@ -1,5 +1,5 @@
1
1
  .wrapper {
2
- margin-left: 10%;
2
+ width: 80%;
3
3
  min-height: calc(96vh - 50px);
4
4
  }
5
5
 
@@ -23,3 +23,8 @@
23
23
  .highlight {
24
24
  color: $highlight-color;
25
25
  }
26
+
27
+ .inline {
28
+ display: inline;
29
+ text-align: right;
30
+ }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-terminal
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.9
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - squifi