lysande-jekyll-theme 0.0.1
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 +7 -0
- data/assets/icons/email_icon.png +0 -0
- data/assets/icons/facebook_icon.png +0 -0
- data/assets/icons/github_icon.png +0 -0
- data/assets/icons/instagram_icon.png +0 -0
- data/assets/icons/linkedin_icon.png +0 -0
- data/assets/icons/pinterest_icon.png +0 -0
- data/assets/icons/rss_icon.png +0 -0
- data/assets/icons/skype_icon.png +0 -0
- data/assets/icons/theme_icon.png +0 -0
- data/assets/icons/tumblr_icon.png +0 -0
- data/assets/icons/twitter_icon.png +0 -0
- data/assets/icons/upwork_icon.png +0 -0
- data/assets/icons/youtube_icon.png +0 -0
- data/example/index.md +39 -0
- metadata +100 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 395e47dece6f4d6bcb75cb83703f832171987706f34b595fda10d8e71921dada
|
|
4
|
+
data.tar.gz: e55d30212efc9fa1b709f18a1ed78ff566f0e13c1c1a93dab6581b78310a31ee
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 4556951c14211536494dd233376e30a6b6c56bf4f6552b0ca7326800b69af99246ddba765d8e7276cc47db9c3ddf6893803bf443b33d2c0109dbfedffcdccd2e
|
|
7
|
+
data.tar.gz: ed939c245b61029b1956f018202a2836e7f90317748518e4752f4425855673f6ff60d7e49425c67a2fc6841422d94d863eb86277d46f943289ce0c8f06924c42
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
data/example/index.md
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
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>
|
metadata
ADDED
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: lysande-jekyll-theme
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Molly Arhammar
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2018-12-18 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: jekyll
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '3.2'
|
|
20
|
+
type: :development
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '3.2'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: bundler
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - "~>"
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '1.12'
|
|
34
|
+
type: :development
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - "~>"
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '1.12'
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: rake
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - "~>"
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '10.0'
|
|
48
|
+
type: :development
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - "~>"
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '10.0'
|
|
55
|
+
description:
|
|
56
|
+
email:
|
|
57
|
+
- mollyarhammar@gmail.com
|
|
58
|
+
executables: []
|
|
59
|
+
extensions: []
|
|
60
|
+
extra_rdoc_files: []
|
|
61
|
+
files:
|
|
62
|
+
- assets/icons/email_icon.png
|
|
63
|
+
- assets/icons/facebook_icon.png
|
|
64
|
+
- assets/icons/github_icon.png
|
|
65
|
+
- assets/icons/instagram_icon.png
|
|
66
|
+
- assets/icons/linkedin_icon.png
|
|
67
|
+
- assets/icons/pinterest_icon.png
|
|
68
|
+
- assets/icons/rss_icon.png
|
|
69
|
+
- assets/icons/skype_icon.png
|
|
70
|
+
- assets/icons/theme_icon.png
|
|
71
|
+
- assets/icons/tumblr_icon.png
|
|
72
|
+
- assets/icons/twitter_icon.png
|
|
73
|
+
- assets/icons/upwork_icon.png
|
|
74
|
+
- assets/icons/youtube_icon.png
|
|
75
|
+
- example/index.md
|
|
76
|
+
homepage: https://github.com/theuggla/lysande-jekyll-theme
|
|
77
|
+
licenses:
|
|
78
|
+
- MIT
|
|
79
|
+
metadata: {}
|
|
80
|
+
post_install_message:
|
|
81
|
+
rdoc_options: []
|
|
82
|
+
require_paths:
|
|
83
|
+
- lib
|
|
84
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
85
|
+
requirements:
|
|
86
|
+
- - ">="
|
|
87
|
+
- !ruby/object:Gem::Version
|
|
88
|
+
version: '0'
|
|
89
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
90
|
+
requirements:
|
|
91
|
+
- - ">="
|
|
92
|
+
- !ruby/object:Gem::Version
|
|
93
|
+
version: '0'
|
|
94
|
+
requirements: []
|
|
95
|
+
rubyforge_project:
|
|
96
|
+
rubygems_version: 2.7.6
|
|
97
|
+
signing_key:
|
|
98
|
+
specification_version: 4
|
|
99
|
+
summary: A theme for showcasing projects of different categories, good for portfolio.
|
|
100
|
+
test_files: []
|