jekyll-theme-ethereal 0.1.0 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +5 -5
- data/_includes/panel.html +11 -16
- data/_includes/panel_banner.html +20 -0
- data/_includes/panel_contact.html +30 -0
- data/_includes/panel_generic.html +5 -0
- data/_includes/panel_spotlight.html +8 -0
- data/_layouts/home.html +1 -1
- data/assets/images/favicon.ico +0 -0
- metadata +7 -5
- data/_includes/banner.html +0 -22
- data/_includes/contact.html +0 -34
- data/_includes/spotlight.html +0 -12
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2f6f7f2b386d149c79d761549fbf798352d7ab7267cd2635ec90f39dd002de93
|
4
|
+
data.tar.gz: 30d186ba6694c7bfee2365a8980b4c356070f435cf0421c2be982b6b84b9cd72
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eb5b53b56442e68f2ff4f7a2349120d8ffa64624248a90d26f317980b3488e325979ff6bbdfa7f9610be8e19fb01d528a485ca74c38e00336e844363d74a4421
|
7
|
+
data.tar.gz: 50c1181087b51884607d200c65da4ac77d43baa8e6ee76cfe58c59dc0927899c8e2ba883fadf40d2dba0b89230bf145f40cfdcdbc0dcc18b41276aa0930f26b1
|
data/README.md
CHANGED
@@ -1,8 +1,8 @@
|
|
1
|
-
# Ethereal - Jekyll
|
1
|
+
# Ethereal - Jekyll template
|
2
2
|
|
3
|
-
>
|
3
|
+
> An augmented version of the "Ethereal" theme by [HTML5 UP][html5up], ported to Jekyll. :rainbow:
|
4
4
|
|
5
|
-
You can preview the theme [here](https://moodule.github.io/jekyll-theme-ethereal
|
5
|
+
You can preview the theme [here](https://moodule.github.io/jekyll-theme-ethereal)
|
6
6
|
|
7
7
|
![Ethereal Theme](assets/images/screenshot.jpg "Ethereal Theme")
|
8
8
|
|
@@ -14,7 +14,7 @@ You can preview the theme [here](https://moodule.github.io/jekyll-theme-ethereal
|
|
14
14
|
|
15
15
|
> **Customizable**: theme colors, header, banner, menu, social items can be changed from a central config file
|
16
16
|
|
17
|
-
> **Many
|
17
|
+
> **Many templates**: contact forms, galleries, and others can be easily inserted thanks to custom Jekyll includes
|
18
18
|
|
19
19
|
> **Vector images**: the theme images are vectorized, render smoothly on any display and can be dynamically styled
|
20
20
|
|
@@ -528,7 +528,7 @@ Repository [Jekyll logo][jekyll-logo] icon licensed under a [Creative Commons At
|
|
528
528
|
|
529
529
|
## License
|
530
530
|
|
531
|
-
The theme is available as open source under the terms of the [CC-BY-
|
531
|
+
The theme is available as open source under the terms of the [CC-BY-4.0](LICENSE).
|
532
532
|
|
533
533
|
[andrew-banchich]: https://gitlab.com/andrewbanchich
|
534
534
|
[cc4-license]: http://choosealicense.com/licenses/cc-by-4.0/
|
data/_includes/panel.html
CHANGED
@@ -1,18 +1,13 @@
|
|
1
1
|
<section
|
2
|
-
class="panel {{ include.style.background.color }}"
|
3
|
-
id="{{ include.id }}">
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
<li><span class="icon solid fa-paper-plane"><span class="label">Sit</span></span></li>
|
14
|
-
<li><span class="icon solid fa-chart-bar"><span class="label">Amet</span></span></li>
|
15
|
-
<li><span class="icon solid fa-code"><span class="label">Nullam</span></span></li>
|
16
|
-
</ul>
|
17
|
-
</div>
|
2
|
+
class="panel {{ include.type }} {{ include.style.size }} {{ include.style.text.position | default: 'right' }} {{ include.style.background.color }}"
|
3
|
+
id="{{ include.id | default: include.type }}">
|
4
|
+
{% if include.type=="banner" %}
|
5
|
+
{% include panel_banner.html header=include.header content=include.content style=include.style %}
|
6
|
+
{% elsif include.type=="contact" %}
|
7
|
+
{% include panel_contact.html header=include.header content=include.content style=include.style %}
|
8
|
+
{% elsif include.type=="spotlight" %}
|
9
|
+
{% include panel_spotlight.html header=include.header content=include.content style=include.style %}
|
10
|
+
{% else %}
|
11
|
+
{% include panel_generic.html header=include.header content=include.content style=include.style %}
|
12
|
+
{% endif %}
|
18
13
|
</section>
|
@@ -0,0 +1,20 @@
|
|
1
|
+
<!-- Banner -->
|
2
|
+
<div class="content {{ include.style.header.color | default: 'color0' }} span-3-75">
|
3
|
+
<h1 class="major">{{ include.header.title }}<br />
|
4
|
+
{{ include.header.subtitle }}</h1>
|
5
|
+
<p>{{ include.header.description }}</p>
|
6
|
+
<ul class="actions">
|
7
|
+
<li>
|
8
|
+
<a
|
9
|
+
href="{{ include.header.button.target }}"
|
10
|
+
class="button primary color1 circle icon solid fa-angle-right">
|
11
|
+
{{ include.header.button.label | default: 'Next'}}
|
12
|
+
</a>
|
13
|
+
</li>
|
14
|
+
</ul>
|
15
|
+
</div>
|
16
|
+
<div
|
17
|
+
class="image filtered span-1-75"
|
18
|
+
data-position="{{ include.style.background.position | default: '25% 25%' }}">
|
19
|
+
<img src="{{ include.style.background.image | absolute_url }}" alt="" />
|
20
|
+
</div>
|
@@ -0,0 +1,30 @@
|
|
1
|
+
<div class="intro {{ include.style.header.color | default: 'color4' }}">
|
2
|
+
<h2 class="major">{{ include.header.title | default: 'Contact'}}</h2>
|
3
|
+
<p>{{ include.header.description }}</p>
|
4
|
+
</div>
|
5
|
+
<div class="inner columns divided">
|
6
|
+
<div class="span-3-25">
|
7
|
+
<form method="post" action="#">
|
8
|
+
<div class="fields">
|
9
|
+
<div class="field half">
|
10
|
+
<label for="name">Name</label>
|
11
|
+
<input type="text" name="name" id="name" />
|
12
|
+
</div>
|
13
|
+
<div class="field half">
|
14
|
+
<label for="email">Email</label>
|
15
|
+
<input type="email" name="email" id="email" />
|
16
|
+
</div>
|
17
|
+
<div class="field">
|
18
|
+
<label for="message">Message</label>
|
19
|
+
<textarea name="message" id="message" rows="4"></textarea>
|
20
|
+
</div>
|
21
|
+
</div>
|
22
|
+
<ul class="actions">
|
23
|
+
<li><input type="submit" value="Send Message" class="button primary" /></li>
|
24
|
+
</ul>
|
25
|
+
</form>
|
26
|
+
</div>
|
27
|
+
<div class="span-1-5">
|
28
|
+
{% include social.html color=include.style.icons.color %}
|
29
|
+
</div>
|
30
|
+
</div>
|
@@ -0,0 +1,8 @@
|
|
1
|
+
<!-- Spotlight -->
|
2
|
+
<div class="content span-7">
|
3
|
+
<h2 class="major">{{ include.header.title }}</h2>
|
4
|
+
<p>{{ include.header.description }}</p>
|
5
|
+
</div>
|
6
|
+
<div class="image filtered tinted" data-position="{{ include.style.background.position }}">
|
7
|
+
<img src="{{ include.style.background.image | absolute_url }}" alt="{{ include.background.alt }}" />
|
8
|
+
</div>
|
data/_layouts/home.html
CHANGED
@@ -3,6 +3,6 @@ layout: default
|
|
3
3
|
---
|
4
4
|
{% assign banner = page.banner | default: site.banner %}
|
5
5
|
|
6
|
-
{% include
|
6
|
+
{% include panel.html type="banner" id="banner" header=banner.header content=banner.content style=banner.style %}
|
7
7
|
|
8
8
|
{{ content }}
|
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-ethereal
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Mougeolle
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-09-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -61,17 +61,18 @@ extra_rdoc_files: []
|
|
61
61
|
files:
|
62
62
|
- LICENSE
|
63
63
|
- README.md
|
64
|
-
- _includes/banner.html
|
65
|
-
- _includes/contact.html
|
66
64
|
- _includes/date.html
|
67
65
|
- _includes/footer.html
|
68
66
|
- _includes/head.html
|
69
67
|
- _includes/language.html
|
70
68
|
- _includes/logo.html
|
71
69
|
- _includes/panel.html
|
70
|
+
- _includes/panel_banner.html
|
71
|
+
- _includes/panel_contact.html
|
72
|
+
- _includes/panel_generic.html
|
73
|
+
- _includes/panel_spotlight.html
|
72
74
|
- _includes/scripts.html
|
73
75
|
- _includes/social.html
|
74
|
-
- _includes/spotlight.html
|
75
76
|
- _includes/thread.html
|
76
77
|
- _layouts/default.html
|
77
78
|
- _layouts/home.html
|
@@ -113,6 +114,7 @@ files:
|
|
113
114
|
- assets/css/noscript.scss
|
114
115
|
- assets/images/bg.jpg
|
115
116
|
- assets/images/drone.jpg
|
117
|
+
- assets/images/favicon.ico
|
116
118
|
- assets/images/gallery/fulls/01.jpg
|
117
119
|
- assets/images/gallery/fulls/02.jpg
|
118
120
|
- assets/images/gallery/fulls/03.jpg
|
data/_includes/banner.html
DELETED
@@ -1,22 +0,0 @@
|
|
1
|
-
<!-- Banner -->
|
2
|
-
<section
|
3
|
-
class="panel banner {{ include.style.text.position | default: 'right' }} {{ include.style.background.color }}"
|
4
|
-
id="{{ include.id | default: 'banner' }}">
|
5
|
-
<div class="content {{ include.style.header.color | default: 'color0' }} span-3-75">
|
6
|
-
<h1 class="major">{{ include.title }}<br />
|
7
|
-
{{ include.subtitle }}</h1>
|
8
|
-
<p>{{ include.description }}</p>
|
9
|
-
<ul class="actions">
|
10
|
-
<li>
|
11
|
-
<a
|
12
|
-
href="{{ include.button.target }}"
|
13
|
-
class="button primary color1 circle icon solid fa-angle-right">
|
14
|
-
{{ include.button.label | default: 'Next'}}
|
15
|
-
</a>
|
16
|
-
</li>
|
17
|
-
</ul>
|
18
|
-
</div>
|
19
|
-
<div class="image filtered span-1-75" data-position="25% 25%">
|
20
|
-
<img src="{{ include.style.background.image | absolute_url }}" alt="" />
|
21
|
-
</div>
|
22
|
-
</section>
|
data/_includes/contact.html
DELETED
@@ -1,34 +0,0 @@
|
|
1
|
-
<section
|
2
|
-
class="panel {{ include.style.background.color | default: 'color4-alt' }}"
|
3
|
-
id="{{ include.id | default: 'contact' }}">
|
4
|
-
<div class="intro {{ include.style.header.color | default: 'color4' }}">
|
5
|
-
<h2 class="major">{{ include.title | default: 'Contact'}}</h2>
|
6
|
-
<p>{{ include.description }}</p>
|
7
|
-
</div>
|
8
|
-
<div class="inner columns divided">
|
9
|
-
<div class="span-3-25">
|
10
|
-
<form method="post" action="#">
|
11
|
-
<div class="fields">
|
12
|
-
<div class="field half">
|
13
|
-
<label for="name">Name</label>
|
14
|
-
<input type="text" name="name" id="name" />
|
15
|
-
</div>
|
16
|
-
<div class="field half">
|
17
|
-
<label for="email">Email</label>
|
18
|
-
<input type="email" name="email" id="email" />
|
19
|
-
</div>
|
20
|
-
<div class="field">
|
21
|
-
<label for="message">Message</label>
|
22
|
-
<textarea name="message" id="message" rows="4"></textarea>
|
23
|
-
</div>
|
24
|
-
</div>
|
25
|
-
<ul class="actions">
|
26
|
-
<li><input type="submit" value="Send Message" class="button primary" /></li>
|
27
|
-
</ul>
|
28
|
-
</form>
|
29
|
-
</div>
|
30
|
-
<div class="span-1-5">
|
31
|
-
{% include social.html color=include.style.icons.color %}
|
32
|
-
</div>
|
33
|
-
</div>
|
34
|
-
</section>
|
data/_includes/spotlight.html
DELETED
@@ -1,12 +0,0 @@
|
|
1
|
-
<!-- Spotlight -->
|
2
|
-
<section
|
3
|
-
class="panel spotlight {{ include.style.size | default: 'medium' }} {{ include.style.text.position | default: 'right' }} {{ include.style.background.color }}"
|
4
|
-
id="{{ include.id | default: 'spotlight' }}">
|
5
|
-
<div class="content span-7">
|
6
|
-
<h2 class="major">{{ include.title }}</h2>
|
7
|
-
<p>{{ include.description }}</p>
|
8
|
-
</div>
|
9
|
-
<div class="image filtered tinted" data-position="bottom right">
|
10
|
-
<img src="{{ include.style.background.image | absolute_url }}" alt="" />
|
11
|
-
</div>
|
12
|
-
</section>
|