consyll 0.1.4 → 1.0.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/_includes/header.html +1 -1
- data/_layouts/page.html +1 -2
- data/_layouts/post.html +3 -3
- data/_sass/consyll.scss +3 -4
- data/_sass/consyll/_base.scss +13 -8
- data/_sass/consyll/_fonts.scss +1 -1
- data/_sass/consyll/_layout.scss +27 -6
- metadata +2 -7
- data/README.md +0 -46
- data/_includes/icon-github.html +0 -1
- data/_includes/icon-github.svg +0 -1
- data/_includes/icon-twitter.html +0 -1
- data/_includes/icon-twitter.svg +0 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 940adf885d7c3075ffe07cf4c15eb16306abc314
|
4
|
+
data.tar.gz: 49f6f5b7c0599577e50e854e0241c132cccc6437
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 600b8ed703c8351c68f306d41e27dd460dd7605f6885782088360d9b23c15b274b38636eab80eb2089d3581f72ab3c3f0d2677c1d9db2b20508a62af5142e4d2
|
7
|
+
data.tar.gz: f4296429fd48955b9d0bb2c0217e4c70dd82fa21d2b3d2673173f2f2a8bf2bc94bc952c4b3b84dbcc0c60174b0c67fac5221e945d41fbc5624ce4481acf7b64a
|
data/_includes/header.html
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
<nav>
|
5
5
|
{% for my_page in site.pages %}
|
6
6
|
{% if my_page.title %}
|
7
|
-
<a class="nav-link" href="{{ my_page.url | prepend: site.baseurl }}">>
|
7
|
+
<a class="nav-link" href="{{ my_page.url | prepend: site.baseurl }}"><span class="accent">></span> {{ my_page.title | escape }}</a>
|
8
8
|
{% endif %}
|
9
9
|
{% endfor %}
|
10
10
|
</nav>
|
data/_layouts/page.html
CHANGED
@@ -4,9 +4,8 @@ layout: default
|
|
4
4
|
<article class="container">
|
5
5
|
<div class="buffer">
|
6
6
|
<header class="post-header">
|
7
|
-
<h1 class="post-title">{{ page.title | escape }}</h1>
|
7
|
+
<h1 class="post-title"><span class="accent">></span> {{ page.title | escape }}</h1>
|
8
8
|
</header>
|
9
|
-
|
10
9
|
<div class="post-content">
|
11
10
|
{{ content }}
|
12
11
|
</div>
|
data/_layouts/post.html
CHANGED
@@ -4,15 +4,15 @@ layout: default
|
|
4
4
|
<article class="container" itemscope itemtype="http://schema.org/BlogPosting">
|
5
5
|
<div class="buffer">
|
6
6
|
<header class="post-header">
|
7
|
-
<h1 class="post-title" itemprop="name headline">{{ page.title | escape }}</h1>
|
7
|
+
<h1 class="post-title" itemprop="name headline"><span class="accent">></span> {{ page.title | escape }}</h1>
|
8
8
|
</header>
|
9
9
|
<div class="post-content" itemprop="articleBody">
|
10
10
|
{{ content }}
|
11
11
|
</div>
|
12
12
|
</div>
|
13
|
-
<div class="
|
13
|
+
<div class="statusbar">
|
14
14
|
<div class="buffer">
|
15
|
-
<time datetime="{{ page.date }}" itemprop="datePublished">{{ page.date
|
15
|
+
<time datetime="{{ page.date }}" itemprop="datePublished">{{ page.date }}</time>{% if page.author %} • <span itemprop="author" itemscope itemtype="http://schema.org/Person"><span itemprop="name">{{ page.author }}</span></span>{% endif %}
|
16
16
|
</div>
|
17
17
|
</div>
|
18
18
|
</article>
|
data/_sass/consyll.scss
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
// Define defaults for each variable.
|
2
2
|
|
3
|
-
$text-color: #
|
4
|
-
$background-color: #
|
3
|
+
$text-color: #ededed !default;
|
4
|
+
$background-color: #191919 !default;
|
5
5
|
|
6
6
|
// Width of the content area
|
7
7
|
$content-width: 800px !default;
|
@@ -10,8 +10,7 @@ $on-palm: 600px !default;
|
|
10
10
|
$on-laptop: 800px !default;
|
11
11
|
|
12
12
|
// Navigation bar
|
13
|
-
$
|
14
|
-
$nav-text-color: #fdfdfd !default;
|
13
|
+
$accent-color: #52FE27 !default;
|
15
14
|
|
16
15
|
// Use media queries like this:
|
17
16
|
// @include media-query($on-palm) {
|
data/_sass/consyll/_base.scss
CHANGED
@@ -4,11 +4,18 @@
|
|
4
4
|
body {
|
5
5
|
background-color: $background-color;
|
6
6
|
color: $text-color;
|
7
|
-
font-family: '
|
7
|
+
font-family: 'Open Sans', sans-serif;
|
8
|
+
}
|
9
|
+
|
10
|
+
a {
|
11
|
+
color: $accent-color;
|
8
12
|
}
|
9
13
|
|
10
14
|
.container {
|
11
|
-
|
15
|
+
background-color: lighten($background-color, 1%);
|
16
|
+
border: 1px solid darken($accent-color, 20%);
|
17
|
+
border-radius: 2px;
|
18
|
+
box-shadow: 10px 10px 20px darken($background-color, 5%);
|
12
19
|
margin: 25px 10px;
|
13
20
|
text-align: left;
|
14
21
|
|
@@ -23,12 +30,10 @@ body {
|
|
23
30
|
}
|
24
31
|
}
|
25
32
|
|
26
|
-
.
|
27
|
-
|
33
|
+
.statusbar {
|
34
|
+
color: $accent-color;
|
28
35
|
}
|
29
36
|
|
30
|
-
.
|
31
|
-
|
32
|
-
background-color: darken($text-color, 70%);
|
33
|
-
color: darken($background-color, 20%);
|
37
|
+
.buffer {
|
38
|
+
padding: 2px 20px;
|
34
39
|
}
|
data/_sass/consyll/_fonts.scss
CHANGED
@@ -1 +1 @@
|
|
1
|
-
@import 'https://fonts.googleapis.com/css?family=
|
1
|
+
@import 'https://fonts.googleapis.com/css?family=Open+Sans';
|
data/_sass/consyll/_layout.scss
CHANGED
@@ -8,13 +8,13 @@ header {
|
|
8
8
|
|
9
9
|
.site-title {
|
10
10
|
font-size: 6vw;
|
11
|
-
font-family: '
|
12
|
-
color: $
|
11
|
+
font-family: 'Open Sans', sans-serif;
|
12
|
+
color: $accent-color;
|
13
13
|
text-decoration: none;
|
14
14
|
}
|
15
15
|
|
16
16
|
.header-hr {
|
17
|
-
border-top: 1px
|
17
|
+
border-top: 1px solid darken($accent-color, 20%);
|
18
18
|
border-bottom: 0px;
|
19
19
|
width: 80%;
|
20
20
|
margin-top: 10px;
|
@@ -22,12 +22,29 @@ header {
|
|
22
22
|
}
|
23
23
|
|
24
24
|
.nav-link {
|
25
|
+
font-size: 20px;
|
26
|
+
font-family: 'Open Sans', sans-serif;
|
27
|
+
color: $text-color;
|
28
|
+
display: inline-block;
|
29
|
+
text-decoration: none;
|
30
|
+
padding: 0px 10px;
|
31
|
+
&:hover {
|
32
|
+
text-decoration: underline;
|
33
|
+
}
|
34
|
+
}
|
35
|
+
|
36
|
+
/**
|
37
|
+
* Post Content
|
38
|
+
*/
|
39
|
+
|
40
|
+
.post-header {
|
41
|
+
text-align: left;
|
25
42
|
font-size: 24px;
|
26
|
-
font-family: 'VT323', monospace;
|
27
|
-
color: $nav-text-color;
|
28
|
-
display: block;
|
29
43
|
}
|
30
44
|
|
45
|
+
.post-title {
|
46
|
+
margin: 20px 0px;
|
47
|
+
}
|
31
48
|
|
32
49
|
|
33
50
|
/**
|
@@ -38,6 +55,10 @@ header {
|
|
38
55
|
margin: auto;
|
39
56
|
}
|
40
57
|
|
58
|
+
.accent {
|
59
|
+
color: $accent-color;
|
60
|
+
}
|
61
|
+
|
41
62
|
@include media-query($on-palm) {
|
42
63
|
.wrapper {
|
43
64
|
width: 95%;
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: consyll
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nicklaus McClendon
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-09-
|
11
|
+
date: 2016-09-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -60,15 +60,10 @@ extensions: []
|
|
60
60
|
extra_rdoc_files: []
|
61
61
|
files:
|
62
62
|
- LICENSE.txt
|
63
|
-
- README.md
|
64
63
|
- _includes/disqus_comments.html
|
65
64
|
- _includes/footer.html
|
66
65
|
- _includes/head.html
|
67
66
|
- _includes/header.html
|
68
|
-
- _includes/icon-github.html
|
69
|
-
- _includes/icon-github.svg
|
70
|
-
- _includes/icon-twitter.html
|
71
|
-
- _includes/icon-twitter.svg
|
72
67
|
- _layouts/default.html
|
73
68
|
- _layouts/page.html
|
74
69
|
- _layouts/post.html
|
data/README.md
DELETED
@@ -1,46 +0,0 @@
|
|
1
|
-
# Consyll
|
2
|
-
|
3
|
-
A terminal-esque Jekyll theme.
|
4
|
-
|
5
|
-
## Installation
|
6
|
-
|
7
|
-
Add this line to your Jekyll site's Gemfile:
|
8
|
-
|
9
|
-
```ruby
|
10
|
-
gem "elmsip"
|
11
|
-
```
|
12
|
-
|
13
|
-
And add this line to your Jekyll site:
|
14
|
-
|
15
|
-
```yaml
|
16
|
-
theme: elmsip
|
17
|
-
```
|
18
|
-
|
19
|
-
And then execute:
|
20
|
-
|
21
|
-
$ bundle
|
22
|
-
|
23
|
-
Or install it yourself as:
|
24
|
-
|
25
|
-
$ gem install elmsip
|
26
|
-
|
27
|
-
## Usage
|
28
|
-
|
29
|
-
Contains the same features as Jekyll's minima.
|
30
|
-
|
31
|
-
## Contributing
|
32
|
-
|
33
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/kulinacs/consyll. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
34
|
-
|
35
|
-
## Development
|
36
|
-
|
37
|
-
To set up your environment to develop this theme, run `bundle install`.
|
38
|
-
|
39
|
-
You theme is setup just like a normal Jelyll site! To test your theme, run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme. Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications to your theme and to your content, your site will regenerate and you should see the changes in the browser after a refresh, just like normal.
|
40
|
-
|
41
|
-
When your theme is released, only the files in `_layouts`, `_includes`, and `_sass` tracked with Git will be released.
|
42
|
-
|
43
|
-
## License
|
44
|
-
|
45
|
-
The theme is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
46
|
-
|
data/_includes/icon-github.html
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
<a href="https://github.com/{{ include.username }}"><span class="icon icon--github">{% include icon-github.svg %}</span><span class="username">{{ include.username }}</span></a>
|
data/_includes/icon-github.svg
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
<svg viewBox="0 0 16 16" width="16px" height="16px"><path fill="#828282" d="M7.999,0.431c-4.285,0-7.76,3.474-7.76,7.761 c0,3.428,2.223,6.337,5.307,7.363c0.388,0.071,0.53-0.168,0.53-0.374c0-0.184-0.007-0.672-0.01-1.32 c-2.159,0.469-2.614-1.04-2.614-1.04c-0.353-0.896-0.862-1.135-0.862-1.135c-0.705-0.481,0.053-0.472,0.053-0.472 c0.779,0.055,1.189,0.8,1.189,0.8c0.692,1.186,1.816,0.843,2.258,0.645c0.071-0.502,0.271-0.843,0.493-1.037 C4.86,11.425,3.049,10.76,3.049,7.786c0-0.847,0.302-1.54,0.799-2.082C3.768,5.507,3.501,4.718,3.924,3.65 c0,0,0.652-0.209,2.134,0.796C6.677,4.273,7.34,4.187,8,4.184c0.659,0.003,1.323,0.089,1.943,0.261 c1.482-1.004,2.132-0.796,2.132-0.796c0.423,1.068,0.157,1.857,0.077,2.054c0.497,0.542,0.798,1.235,0.798,2.082 c0,2.981-1.814,3.637-3.543,3.829c0.279,0.24,0.527,0.713,0.527,1.437c0,1.037-0.01,1.874-0.01,2.129 c0,0.208,0.14,0.449,0.534,0.373c3.081-1.028,5.302-3.935,5.302-7.362C15.76,3.906,12.285,0.431,7.999,0.431z"/></svg>
|
data/_includes/icon-twitter.html
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
<a href="https://twitter.com/{{ include.username }}"><span class="icon icon--twitter">{% include icon-twitter.svg %}</span><span class="username">{{ include.username }}</span></a>
|
data/_includes/icon-twitter.svg
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
<svg viewBox="0 0 16 16" width="16px" height="16px"><path fill="#828282" d="M15.969,3.058c-0.586,0.26-1.217,0.436-1.878,0.515c0.675-0.405,1.194-1.045,1.438-1.809c-0.632,0.375-1.332,0.647-2.076,0.793c-0.596-0.636-1.446-1.033-2.387-1.033c-1.806,0-3.27,1.464-3.27,3.27 c0,0.256,0.029,0.506,0.085,0.745C5.163,5.404,2.753,4.102,1.14,2.124C0.859,2.607,0.698,3.168,0.698,3.767 c0,1.134,0.577,2.135,1.455,2.722C1.616,6.472,1.112,6.325,0.671,6.08c0,0.014,0,0.027,0,0.041c0,1.584,1.127,2.906,2.623,3.206 C3.02,9.402,2.731,9.442,2.433,9.442c-0.211,0-0.416-0.021-0.615-0.059c0.416,1.299,1.624,2.245,3.055,2.271 c-1.119,0.877-2.529,1.4-4.061,1.4c-0.264,0-0.524-0.015-0.78-0.046c1.447,0.928,3.166,1.469,5.013,1.469 c6.015,0,9.304-4.983,9.304-9.304c0-0.142-0.003-0.283-0.009-0.423C14.976,4.29,15.531,3.714,15.969,3.058z"/></svg>
|