lysande-jekyll-theme 0.0.1 → 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/LICENSE.txt +21 -0
- data/README.md +536 -0
- data/_data/theme.yml +5 -0
- data/_includes/footer.html +19 -0
- data/_includes/globalnav.html +12 -0
- data/_includes/head.html +17 -0
- data/_includes/header.html +69 -0
- data/_layouts/blog.html +30 -0
- data/_layouts/default.html +16 -0
- data/_layouts/post.html +40 -0
- data/_layouts/projects.html +49 -0
- data/_sass/_base.scss +153 -0
- data/_sass/_blog.scss +183 -0
- data/_sass/_headandfoot.scss +61 -0
- data/_sass/_menu.scss +31 -0
- data/_sass/_projects.scss +139 -0
- data/_sass/_reset.scss +21 -0
- data/_sass/_responsive.scss +267 -0
- data/assets/backgrounds/default_rustic.jpg +0 -0
- data/assets/fonts/aqua/aqua-demo.html +480 -0
- data/assets/fonts/aqua/aqua-webfont.woff +0 -0
- data/assets/fonts/aqua/aqua-webfont.woff2 +0 -0
- data/assets/fonts/aqua/generator_config.txt +5 -0
- data/assets/fonts/aqua/specimen_files/grid_12-825-55-15.css +129 -0
- data/assets/fonts/aqua/specimen_files/specimen_stylesheet.css +396 -0
- data/assets/fonts/aqua/stylesheet.css +12 -0
- data/assets/fonts/biko/biko_regular-webfont.woff +0 -0
- data/assets/fonts/biko/biko_regular-webfont.woff2 +0 -0
- data/assets/fonts/chase/chase-webfont.woff +0 -0
- data/assets/fonts/chase/chase-webfont.woff2 +0 -0
- data/assets/fonts/simplifica_typeface-webfont.woff +0 -0
- data/assets/fonts/simplifica_typeface-webfont.woff2 +0 -0
- data/assets/main.scss +91 -0
- data/assets/open-graph/default.png +0 -0
- data/assets/projects/images/jekylltheme.png +0 -0
- data/assets/projects/symbols/code.png +0 -0
- data/assets/projects/symbols/design.png +0 -0
- data/assets/projects/symbols/published.png +0 -0
- data/favicon.ico +0 -0
- data/feed.xml +20 -0
- metadata +41 -2
- data/example/index.md +0 -39
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/* Generated by Font Squirrel (https://www.fontsquirrel.com) on November 11, 2016 */
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
@font-face {
|
|
6
|
+
font-family: 'aqua_grotesqueregular';
|
|
7
|
+
src: url('aqua-webfont.woff2') format('woff2'),
|
|
8
|
+
url('aqua-webfont.woff') format('woff');
|
|
9
|
+
font-weight: normal;
|
|
10
|
+
font-style: normal;
|
|
11
|
+
|
|
12
|
+
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
data/assets/main.scss
ADDED
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
---
|
|
2
|
+
---
|
|
3
|
+
|
|
4
|
+
// set background-image variable
|
|
5
|
+
$background-image: "../assets/backgrounds/" + "{{ site.background_image }}";
|
|
6
|
+
|
|
7
|
+
// import bases
|
|
8
|
+
@import '_base';
|
|
9
|
+
@import '_menu';
|
|
10
|
+
|
|
11
|
+
// home styles
|
|
12
|
+
#about {
|
|
13
|
+
width: 30%;
|
|
14
|
+
float: left;
|
|
15
|
+
padding-bottom: $base-spacing;
|
|
16
|
+
|
|
17
|
+
@include small-laptop {
|
|
18
|
+
width: 80%;
|
|
19
|
+
float: none;
|
|
20
|
+
margin: $center;
|
|
21
|
+
margin-top: $base-spacing * 2;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
p {
|
|
25
|
+
padding-bottom: $base-spacing * 2;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
#projects {
|
|
30
|
+
float: right;
|
|
31
|
+
width: 60%;
|
|
32
|
+
margin-top: $base-sizing * 2;
|
|
33
|
+
text-align: right;
|
|
34
|
+
|
|
35
|
+
h2 {
|
|
36
|
+
font-family: $headlines;
|
|
37
|
+
font-size: $big-font-size;
|
|
38
|
+
margin-bottom: 0.3em;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
div {
|
|
42
|
+
border-right-style: ridge;
|
|
43
|
+
border-width: $border-width;
|
|
44
|
+
width: 33%;
|
|
45
|
+
float: left;
|
|
46
|
+
padding: $base-spacing / 2;
|
|
47
|
+
padding-bottom: 0;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
img {
|
|
51
|
+
float: left;
|
|
52
|
+
max-height: 2.5em;
|
|
53
|
+
max-width: 5em;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
@include small-laptop {
|
|
57
|
+
float: none;
|
|
58
|
+
clear: both;
|
|
59
|
+
width: 100%;
|
|
60
|
+
margin: $center;
|
|
61
|
+
margin-top: $base-spacing * 2;
|
|
62
|
+
padding: $base-spacing;
|
|
63
|
+
overflow: auto;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
@include tablet {
|
|
67
|
+
div {
|
|
68
|
+
float: none;
|
|
69
|
+
margin: $center;
|
|
70
|
+
padding: $base-spacing;
|
|
71
|
+
width: 50%;
|
|
72
|
+
border-style: none;
|
|
73
|
+
border-bottom-style: ridge;
|
|
74
|
+
text-align: center;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
div:last-of-type {
|
|
78
|
+
border-bottom-style: none;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
img {
|
|
82
|
+
max-width: 2em;
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
@import '_projects';
|
|
89
|
+
@import '_blog';
|
|
90
|
+
@import '_responsive';
|
|
91
|
+
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
data/favicon.ico
ADDED
|
Binary file
|
data/feed.xml
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: null
|
|
3
|
+
menu: no
|
|
4
|
+
---
|
|
5
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
6
|
+
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
7
|
+
<channel>
|
|
8
|
+
<title>{{site.title}}</title>
|
|
9
|
+
<description>my latest projects</description>
|
|
10
|
+
<link>{{ site.url }}{{site.baseurl}}</link>
|
|
11
|
+
{% for project in site.projects %}
|
|
12
|
+
<item>
|
|
13
|
+
<title>{{ project.title | xml_escape }}</title>
|
|
14
|
+
<description>{{ project.excerpt | xml_escape }}</description>
|
|
15
|
+
<link>{{ project.url | prepend: site.url | prepend: site.baseurl}}</link>
|
|
16
|
+
<guid isPermaLink="true">{{ project.url | prepend: site.url | prepend: site.baseurl}}</guid>
|
|
17
|
+
</item>
|
|
18
|
+
{% endfor %}
|
|
19
|
+
</channel>
|
|
20
|
+
</rss>
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: lysande-jekyll-theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Molly Arhammar
|
|
@@ -59,6 +59,38 @@ executables: []
|
|
|
59
59
|
extensions: []
|
|
60
60
|
extra_rdoc_files: []
|
|
61
61
|
files:
|
|
62
|
+
- LICENSE.txt
|
|
63
|
+
- README.md
|
|
64
|
+
- _data/theme.yml
|
|
65
|
+
- _includes/footer.html
|
|
66
|
+
- _includes/globalnav.html
|
|
67
|
+
- _includes/head.html
|
|
68
|
+
- _includes/header.html
|
|
69
|
+
- _layouts/blog.html
|
|
70
|
+
- _layouts/default.html
|
|
71
|
+
- _layouts/post.html
|
|
72
|
+
- _layouts/projects.html
|
|
73
|
+
- _sass/_base.scss
|
|
74
|
+
- _sass/_blog.scss
|
|
75
|
+
- _sass/_headandfoot.scss
|
|
76
|
+
- _sass/_menu.scss
|
|
77
|
+
- _sass/_projects.scss
|
|
78
|
+
- _sass/_reset.scss
|
|
79
|
+
- _sass/_responsive.scss
|
|
80
|
+
- assets/backgrounds/default_rustic.jpg
|
|
81
|
+
- assets/fonts/aqua/aqua-demo.html
|
|
82
|
+
- assets/fonts/aqua/aqua-webfont.woff
|
|
83
|
+
- assets/fonts/aqua/aqua-webfont.woff2
|
|
84
|
+
- assets/fonts/aqua/generator_config.txt
|
|
85
|
+
- assets/fonts/aqua/specimen_files/grid_12-825-55-15.css
|
|
86
|
+
- assets/fonts/aqua/specimen_files/specimen_stylesheet.css
|
|
87
|
+
- assets/fonts/aqua/stylesheet.css
|
|
88
|
+
- assets/fonts/biko/biko_regular-webfont.woff
|
|
89
|
+
- assets/fonts/biko/biko_regular-webfont.woff2
|
|
90
|
+
- assets/fonts/chase/chase-webfont.woff
|
|
91
|
+
- assets/fonts/chase/chase-webfont.woff2
|
|
92
|
+
- assets/fonts/simplifica_typeface-webfont.woff
|
|
93
|
+
- assets/fonts/simplifica_typeface-webfont.woff2
|
|
62
94
|
- assets/icons/email_icon.png
|
|
63
95
|
- assets/icons/facebook_icon.png
|
|
64
96
|
- assets/icons/github_icon.png
|
|
@@ -72,7 +104,14 @@ files:
|
|
|
72
104
|
- assets/icons/twitter_icon.png
|
|
73
105
|
- assets/icons/upwork_icon.png
|
|
74
106
|
- assets/icons/youtube_icon.png
|
|
75
|
-
-
|
|
107
|
+
- assets/main.scss
|
|
108
|
+
- assets/open-graph/default.png
|
|
109
|
+
- assets/projects/images/jekylltheme.png
|
|
110
|
+
- assets/projects/symbols/code.png
|
|
111
|
+
- assets/projects/symbols/design.png
|
|
112
|
+
- assets/projects/symbols/published.png
|
|
113
|
+
- favicon.ico
|
|
114
|
+
- feed.xml
|
|
76
115
|
homepage: https://github.com/theuggla/lysande-jekyll-theme
|
|
77
116
|
licenses:
|
|
78
117
|
- MIT
|
data/example/index.md
DELETED
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
title: home
|
|
3
|
-
weight: 1
|
|
4
|
-
menu: main
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
<section id="about">
|
|
8
|
-
{% if site.index_text %}
|
|
9
|
-
<p>{{ site.index_text }} </p>
|
|
10
|
-
{% else %}
|
|
11
|
-
<p>this site is a portfolio to showcase my projects, and this text is about me. maybe I'm introducing myself and what I do here. the section can of course be ignored completely, or restyles using the <code>assets/main.scss-file</code></p>
|
|
12
|
-
<p>the important thing is to keep the Front Matter on the index-page to:
|
|
13
|
-
<br />
|
|
14
|
-
<br />
|
|
15
|
-
<code>
|
|
16
|
-
---<br />
|
|
17
|
-
title: home<br />
|
|
18
|
-
weight: 1<br />
|
|
19
|
-
menu: main<br />
|
|
20
|
-
---
|
|
21
|
-
</code>
|
|
22
|
-
</p>
|
|
23
|
-
<p>to the right, links to the three first project categories are displayed together with an icon with the path
|
|
24
|
-
<code>/assets/projects/symbols/{{category}}.png</code>. It is possible to supply your own icons on this path.
|
|
25
|
-
</p>
|
|
26
|
-
{% endif %}
|
|
27
|
-
</section>
|
|
28
|
-
|
|
29
|
-
<section id="projects">
|
|
30
|
-
{% assign collectionName = 'projects' %}
|
|
31
|
-
{% assign c = site.collections | where:'label', collectionName | first %}
|
|
32
|
-
{% for category in c.categories limit:3 %}
|
|
33
|
-
<div id="{{category}}">
|
|
34
|
-
<img src="/assets/projects/symbols/{{category}}.png" />
|
|
35
|
-
<h2>{{category}}</h2>
|
|
36
|
-
<a href="/projects#{{category}}">go to {{category}} projects</a>
|
|
37
|
-
</div>
|
|
38
|
-
{% endfor %}
|
|
39
|
-
</section>
|