jenstep_theme 0.1.1 → 0.1.2

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
  SHA256:
3
- metadata.gz: a8c56af4d7fdf3aae1fcd7d5afff4177d6fed7d30880fa0dd7ab91ffb48a762d
4
- data.tar.gz: 7f9a3e4602f8c16eace75e894f5fbb725821340b312b050282ef668c0a78547f
3
+ metadata.gz: 8226a69a37066820a08db8e75ada4b53fff9bbe73cf2453cea8764eb3a17a4b1
4
+ data.tar.gz: 499622cf58aa0eb9ea16a4a4cace4d5fd68b8da160d2992ff156a40fc20378fa
5
5
  SHA512:
6
- metadata.gz: 162fed207fcbdb4bad6e199040209169ecf90cad58a541629aba742cd1bb1c35080e5abb8440b1ab87d5b286f0b75b2d551d7773c58e240517410b106efc8b2d
7
- data.tar.gz: 7dad01bf7c668db946d91ae42c0ed4755b4b5130ec66c52ed9b19603a79a9b0cd2c3aa068a5e02cabdc1adb1028a86ae8c53ede2bc83de3c5f503cee70fa460a
6
+ metadata.gz: 03c1d31861771b55ae39c20db422db5076adaea40f3ff6e5da663c84e1159793ea44443bea1fe0733c09c1a340ea460ff34ecf782b21290a9d87165371038a12
7
+ data.tar.gz: 29037129a5caf37c82d6d88a1ad3a5a73655e584d5494cafa5f6ea23fe5c3192cdb78a54dbf35ddf5db99ad38c22e8413ff4eadcd3dd4e19ff26dfed5d5a4063
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
- # personal-theme
1
+ # jenstep_theme
2
2
 
3
- Welcome! Personal-theme is a simple Jekyll theme for your personal website.
3
+ Welcome! jenstep_theme is a simple Jekyll theme for your personal website.
4
4
 
5
5
 
6
6
  ## Installation
@@ -8,13 +8,13 @@ Welcome! Personal-theme is a simple Jekyll theme for your personal website.
8
8
  Add this line to your Jekyll site's `Gemfile`:
9
9
 
10
10
  ```ruby
11
- gem "personal-theme"
11
+ gem "jenstep_theme"
12
12
  ```
13
13
 
14
14
  And add this line to your Jekyll site's `_config.yml`:
15
15
 
16
16
  ```yaml
17
- theme: personal-theme
17
+ theme: jenstep_theme
18
18
  ```
19
19
 
20
20
  And then execute:
@@ -23,7 +23,7 @@ And then execute:
23
23
 
24
24
  Or install it yourself as:
25
25
 
26
- $ gem install personal-theme
26
+ $ gem install jenstep_theme
27
27
 
28
28
  ## Usage
29
29
 
@@ -33,7 +33,7 @@ Many features are still under development.
33
33
 
34
34
  ## Contributing
35
35
 
36
- Bug reports and pull requests are welcome on GitHub at https://github.com/JenStep/personal-theme. 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.
36
+ Bug reports and pull requests are welcome on GitHub at https://github.com/JenStep/jenstep_theme. 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.
37
37
 
38
38
  This theme was adapted from the jekyll minima theme, which can be found at https://github.com/jekyll/minima.
39
39
 
@@ -44,7 +44,7 @@ To set up your environment to develop this theme, run `bundle install`.
44
44
  Your theme is setup just like a normal Jekyll 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.
45
45
 
46
46
  When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
47
- To add a custom directory to your theme-gem, please edit the regexp in `personal-theme.gemspec` accordingly.
47
+ To add a custom directory to your theme-gem, please edit the regexp in `jenstep_theme.gemspec` accordingly.
48
48
 
49
49
  ## License
50
50
 
data/_config.yml CHANGED
@@ -16,7 +16,7 @@ collections:
16
16
  - widgets
17
17
  #Personal Theme Formatting
18
18
  # refer to https://shopify.github.io/liquid/filters/date/ if you want to customize this
19
- personal-theme:
19
+ jenstep_theme:
20
20
  date_format: "%b %-d, %Y"
21
21
  # social links in footer
22
22
  social_links:
@@ -39,7 +39,7 @@ personal-theme:
39
39
  # keybase: jekyll
40
40
 
41
41
  # Build settings
42
- theme: personal-theme
42
+ theme: jenstep_theme
43
43
  plugins:
44
44
  - jekyll-feed
45
45
  - jekyll-seo-tag
@@ -1,4 +1,4 @@
1
- {%- assign social = site.personal-theme.social_links -%}
1
+ {%- assign social = site.jenstep_theme.social_links -%}
2
2
  <footer class="site-footer h-card">
3
3
  <data class="u-url" href="{{ '/' | relative_url }}"></data>
4
4
 
@@ -17,14 +17,19 @@
17
17
  {%- endif -%}
18
18
 
19
19
  {%- if site.author.email -%}
20
- <li><a class="u-email" href="mailto:{{ site.author.email }}">{{ site.author.email }}</a></li>
20
+ <li>
21
+ <a class="u-email" href="mailto:{{ site.author.email }}">
22
+ <img class="svg-icon grey" src="/assets/email-icon.svg" alt="email icon">
23
+ {{ site.author.email }}
24
+ </a>
25
+ </li>
21
26
  {%- endif -%}
22
27
 
23
28
  {%- if social.github_username -%}
24
29
  <li>
25
30
  <a rel="me" href="https://github.com/{{ social.github_username | cgi_escape | escape }}" title="{{ social.github_username | escape }}">
26
31
  <svg class="svg-icon grey">
27
- <use xlink:href="{{ '/assets/personal-theme-social-icons.svg#github' | relative_url }}"></use>
32
+ <use xlink:href="{{ '/assets/jenstep_theme-social-icons.svg#github' | relative_url }}"></use>
28
33
  </svg>
29
34
  {{ social.github_username | escape }}
30
35
  </a>
@@ -35,7 +40,7 @@
35
40
  <li>
36
41
  <a rel="me" href="https://www.linkedin.com/in/{{ social.linkedin_username | cgi_escape | escape }}" title="{{ social.linkedin | escape }}">
37
42
  <svg class="svg-icon grey">
38
- <use xlink:href="{{ '/assets/personal-theme-social-icons.svg#linkedin' | relative_url }}"></use>
43
+ <use xlink:href="{{ '/assets/jenstep_theme-social-icons.svg#linkedin' | relative_url }}"></use>
39
44
  </svg>
40
45
  {{ social.linkedin_username | escape }}
41
46
  </a>
@@ -1,7 +1,7 @@
1
1
  <header class="site-header" role="banner">
2
2
 
3
3
  <div class="wrapper">
4
- {%- assign default_paths = site.pages | map: "path" -%}
4
+ {%- assign default_paths = site.pages | sort:"order" | map: "path" -%}
5
5
  {%- assign page_paths = site.header_pages | default: default_paths -%}
6
6
  <a class="site-title" rel="author" href="{{ '/' | relative_url }}">{{ site.title | escape }}</a>
7
7
 
@@ -1,21 +1,22 @@
1
- {%- assign social = site.personal-theme.social_links -%}
1
+ {%- assign social = site.jenstep_theme.social_links -%}
2
2
 
3
3
  <ul class="social-media-list">
4
- {%- for glb in social.gitlab -%}{%- if glb.username and glb.instance -%}<li><a rel="me" href="https://{{ glb.instance | cgi_escape | escape}}/{{glb.username}}" title="{{ glb.username | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/personal-theme-social-icons.svg#gitlab' | relative_url }}"></use></svg></a></li>{%- endif -%}{%- endfor -%}
5
- {%- if social.dribbble -%}<li><a rel="me" href="https://dribbble.com/{{ social.dribbble | cgi_escape | escape }}" title="{{ social.dribbble | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/personal-theme-social-icons.svg#dribbble' | relative_url }}"></use></svg></a></li>{%- endif -%}
6
- {%- if social.facebook -%}<li><a rel="me" href="https://www.facebook.com/{{ social.facebook | cgi_escape | escape }}" title="{{ social.facebook | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/personal-theme-social-icons.svg#facebook' | relative_url }}"></use></svg></a></li>{%- endif -%}
7
- {%- if social.flickr -%}<li><a rel="me" href="https://www.flickr.com/photos/{{ social.flickr | cgi_escape | escape }}" title="{{ social.flickr | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/personal-theme-social-icons.svg#flickr' | relative_url }}"></use></svg></a></li>{%- endif -%}
8
- {%- if social.github -%}<li><a rel="me" href="https://github.com/{{ social.github | cgi_escape | escape }}" title="{{ social.github | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/personal-theme-social-icons.svg#github' | relative_url }}"></use></svg></a></li>{%- endif -%}
9
- {%- if social.stackoverflow -%}<li><a rel="me" href="https://stackoverflow.com/users/{{ social.stackoverflow | cgi_escape | escape }}" title="{{ social.stackoverflow | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/personal-theme-social-icons.svg#stackoverflow' | relative_url }}"></use></svg></a></li>{%- endif -%}
10
- {%- if social.instagram -%}<li><a rel="me" href="https://www.instagram.com/{{ social.instagram | cgi_escape | escape }}" title="{{ social.instagram | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/personal-theme-social-icons.svg#instagram' | relative_url }}"></use></svg></a></li>{%- endif -%}
11
- {%- if social.linkedin -%}<li><a rel="me" href="https://www.linkedin.com/in/{{ social.linkedin | cgi_escape | escape }}" title="{{ social.linkedin | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/personal-theme-social-icons.svg#linkedin' | relative_url }}"></use></svg></a></li>{%- endif -%}
12
- {%- if social.pinterest -%}<li><a rel="me" href="https://www.pinterest.com/{{ social.pinterest | cgi_escape | escape }}" title="{{ social.pinterest | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/personal-theme-social-icons.svg#pinterest' | relative_url }}"></use></svg></a></li>{%- endif -%}
13
- {%- for mst in social.mastodon -%}{%- if mst.username and mst.instance -%}<li><a rel="me" href="https://{{ mst.instance | cgi_escape | escape}}/@{{mst.username}}" title="{{ mst.username | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/personal-theme-social-icons.svg#mastodon' | relative_url }}"></use></svg></a></li>{%- endif -%}{%- endfor -%}
14
- {%- if social.twitter -%}<li><a rel="me" href="https://twitter.com/{{ social.twitter | cgi_escape | escape }}" title="{{ social.twitter | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/personal-theme-social-icons.svg#twitter' | relative_url }}"></use></svg></a></li>{%- endif -%}
15
- {%- if social.youtube -%}<li><a rel="me" href="https://www.youtube.com/{{ social.youtube | cgi_escape | escape }}" title="{{ social.youtube | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/personal-theme-social-icons.svg#youtube' | relative_url }}"></use></svg></a></li>{%- endif -%}
16
- {%- if social.youtube_channel -%}<li><a rel="me" href="https://www.youtube.com/channel/{{ social.youtube_channel | cgi_escape | escape }}" title="{{ social.youtube_channel_name | escape | default: 'YouTube' }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/personal-theme-social-icons.svg#youtube' | relative_url }}"></use></svg></a></li>{%- endif -%}
17
- {%- if social.telegram -%}<li><a rel="me" href="https://t.me/{{ social.telegram | cgi_escape | escape }}" title="{{ social.telegram | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/personal-theme-social-icons.svg#telegram' | relative_url }}"></use></svg></a></li>{%- endif -%}
18
- {%- if social.keybase -%}<li><a rel="me" href="https://keybase.io/{{ social.keybase | cgi_escape | escape }}" title="{{ social.keybase | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/personal-theme-social-icons.svg#keybase' | relative_url }}"></use></svg></a></li>{%- endif -%}
19
- {%- if social.microdotblog -%}<li><a rel="me" href="https://micro.blog/{{ social.microdotblog | cgi_escape | escape }}" title="{{ social.microdotblog | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/personal-theme-social-icons.svg#microdotblog' | relative_url }}"></use></svg></a></li>{%- endif -%}
20
- {%- if social.devto -%}<li><a href="https://dev.to/{{ social.devto | cgi_escape | escape }}" title="{{ social.devto | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/personal-theme-social-icons.svg#devto' | relative_url }}"></use></svg></a></li>{%- endif -%}
4
+ {%- for glb in social.gitlab -%}{%- if glb.username and glb.instance -%}<li><a rel="me" href="https://{{ glb.instance | cgi_escape | escape}}/{{glb.username}}" title="{{ glb.username | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/jenstep_theme-social-icons.svg#gitlab' | relative_url }}"></use></svg></a></li>{%- endif -%}{%- endfor -%}
5
+ {%- if social.email -%}<li><a rel="me" href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" title="email-icon.svg"><svg class="svg-con grey"><use class="material-icons">email</use></svg></a></li>{%- endif -%}
6
+ {%- if social.dribbble -%}<li><a rel="me" href="https://dribbble.com/{{ social.dribbble | cgi_escape | escape }}" title="{{ social.dribbble | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/jenstep_theme-social-icons.svg#dribbble' | relative_url }}"></use></svg></a></li>{%- endif -%}
7
+ {%- if social.facebook -%}<li><a rel="me" href="https://www.facebook.com/{{ social.facebook | cgi_escape | escape }}" title="{{ social.facebook | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/jenstep_theme-social-icons.svg#facebook' | relative_url }}"></use></svg></a></li>{%- endif -%}
8
+ {%- if social.flickr -%}<li><a rel="me" href="https://www.flickr.com/photos/{{ social.flickr | cgi_escape | escape }}" title="{{ social.flickr | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/jenstep_theme-social-icons.svg#flickr' | relative_url }}"></use></svg></a></li>{%- endif -%}
9
+ {%- if social.github -%}<li><a rel="me" href="https://github.com/{{ social.github | cgi_escape | escape }}" title="{{ social.github | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/jenstep_theme-social-icons.svg#github' | relative_url }}"></use></svg></a></li>{%- endif -%}
10
+ {%- if social.stackoverflow -%}<li><a rel="me" href="https://stackoverflow.com/users/{{ social.stackoverflow | cgi_escape | escape }}" title="{{ social.stackoverflow | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/jenstep_theme-social-icons.svg#stackoverflow' | relative_url }}"></use></svg></a></li>{%- endif -%}
11
+ {%- if social.instagram -%}<li><a rel="me" href="https://www.instagram.com/{{ social.instagram | cgi_escape | escape }}" title="{{ social.instagram | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/jenstep_theme-social-icons.svg#instagram' | relative_url }}"></use></svg></a></li>{%- endif -%}
12
+ {%- if social.linkedin -%}<li><a rel="me" href="https://www.linkedin.com/in/{{ social.linkedin | cgi_escape | escape }}" title="{{ social.linkedin | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/jenstep_theme-social-icons.svg#linkedin' | relative_url }}"></use></svg></a></li>{%- endif -%}
13
+ {%- if social.pinterest -%}<li><a rel="me" href="https://www.pinterest.com/{{ social.pinterest | cgi_escape | escape }}" title="{{ social.pinterest | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/jenstep_theme-social-icons.svg#pinterest' | relative_url }}"></use></svg></a></li>{%- endif -%}
14
+ {%- for mst in social.mastodon -%}{%- if mst.username and mst.instance -%}<li><a rel="me" href="https://{{ mst.instance | cgi_escape | escape}}/@{{mst.username}}" title="{{ mst.username | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/jenstep_theme-social-icons.svg#mastodon' | relative_url }}"></use></svg></a></li>{%- endif -%}{%- endfor -%}
15
+ {%- if social.twitter -%}<li><a rel="me" href="https://twitter.com/{{ social.twitter | cgi_escape | escape }}" title="{{ social.twitter | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/jenstep_theme-social-icons.svg#twitter' | relative_url }}"></use></svg></a></li>{%- endif -%}
16
+ {%- if social.youtube -%}<li><a rel="me" href="https://www.youtube.com/{{ social.youtube | cgi_escape | escape }}" title="{{ social.youtube | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/jenstep_theme-social-icons.svg#youtube' | relative_url }}"></use></svg></a></li>{%- endif -%}
17
+ {%- if social.youtube_channel -%}<li><a rel="me" href="https://www.youtube.com/channel/{{ social.youtube_channel | cgi_escape | escape }}" title="{{ social.youtube_channel_name | escape | default: 'YouTube' }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/jenstep_theme-social-icons.svg#youtube' | relative_url }}"></use></svg></a></li>{%- endif -%}
18
+ {%- if social.telegram -%}<li><a rel="me" href="https://t.me/{{ social.telegram | cgi_escape | escape }}" title="{{ social.telegram | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/jenstep_theme-social-icons.svg#telegram' | relative_url }}"></use></svg></a></li>{%- endif -%}
19
+ {%- if social.keybase -%}<li><a rel="me" href="https://keybase.io/{{ social.keybase | cgi_escape | escape }}" title="{{ social.keybase | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/jenstep_theme-social-icons.svg#keybase' | relative_url }}"></use></svg></a></li>{%- endif -%}
20
+ {%- if social.microdotblog -%}<li><a rel="me" href="https://micro.blog/{{ social.microdotblog | cgi_escape | escape }}" title="{{ social.microdotblog | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/jenstep_theme-social-icons.svg#microdotblog' | relative_url }}"></use></svg></a></li>{%- endif -%}
21
+ {%- if social.devto -%}<li><a href="https://dev.to/{{ social.devto | cgi_escape | escape }}" title="{{ social.devto | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/jenstep_theme-social-icons.svg#devto' | relative_url }}"></use></svg></a></li>{%- endif -%}
21
22
  </ul>
data/_layouts/post.html CHANGED
@@ -7,7 +7,7 @@ layout: default
7
7
  <h1 class="post-title p-name" itemprop="name headline">{{ page.title | escape }}</h1>
8
8
  <p class="post-meta">
9
9
  <time class="dt-published" datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
10
- {%- assign date_format = site.personal-theme.date_format | default: "%b %-d, %Y" -%}
10
+ {%- assign date_format = site.jenstep_theme.date_format | default: "%b %-d, %Y" -%}
11
11
  {{ page.date | date: date_format }}
12
12
  </time>
13
13
  {%- if page.author -%}
@@ -45,7 +45,7 @@ $on-laptop: 1000px !default;
45
45
 
46
46
  // Import partials.
47
47
  @import
48
- "personal-theme/base",
49
- "personal-theme/layout",
50
- "personal-theme/syntax-highlighting"
48
+ "jenstep_theme/base",
49
+ "jenstep_theme/layout",
50
+ "jenstep_theme/syntax-highlighting"
51
51
  ;
File without changes
@@ -240,7 +240,9 @@
240
240
  .widget-wrapper {
241
241
  display: flex;
242
242
  flex-wrap: wrap;
243
- justify-content: space-evenly;
244
- align-content: center;
245
243
  padding: 10px;
244
+ }
245
+
246
+ .widget-wrapper>* {
247
+ flex: 1 1 auto;
246
248
  }
@@ -0,0 +1,24 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="16" height="16" version="1.1" viewBox="0 0 16 16" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"><metadata><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/><dc:title/></cc:Work></rdf:RDF></metadata>
3
+ <g transform="matrix(.069514 0 0 .069514 0 -.29987)" fill="#999">
4
+ <path d="m230 49.585c0-0.263 0.181-0.519 0.169-0.779l-70.24 67.68 70.156 65.518c0.041-0.468-0.085-0.94-0.085-1.418z"/>
5
+ <path d="m149.21 126.9-28.674 27.588c-1.451 1.396-3.325 2.096-5.2 2.096-1.836 0-3.672-0.67-5.113-2.013l-28.596-26.647-70.614 68.064c1.717 0.617 3.56 1.096 5.49 1.096h197.67c2.866 0 5.554-0.873 7.891-2.175z"/>
6
+ <path d="m115.25 138.76 107.2-103.26c-2.427-1.443-5.252-2.411-8.28-2.411h-197.67c-3.943 0-7.556 1.531-10.37 3.866z"/>
7
+ <path d="m0 52.1v128.48c0 1.475 0.339 2.897 0.707 4.256l69.738-67.156z"/>
8
+ </g>
9
+
10
+
11
+
12
+
13
+
14
+
15
+
16
+
17
+
18
+
19
+
20
+
21
+
22
+
23
+
24
+ </svg>
data/assets/main.scss CHANGED
@@ -2,4 +2,4 @@
2
2
  # Only the main Sass file needs front matter (the dashes are enough)
3
3
  ---
4
4
 
5
- @import "personal-theme";
5
+ @import "jenstep_theme";
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jenstep_theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jenna Stephens
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-03-10 00:00:00.000000000 Z
11
+ date: 2021-03-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -45,13 +45,14 @@ files:
45
45
  - _layouts/page.html
46
46
  - _layouts/post.html
47
47
  - _layouts/widget.html
48
- - _sass/personal-theme.scss
49
- - _sass/personal-theme/_base.scss
50
- - _sass/personal-theme/_layout.scss
51
- - _sass/personal-theme/_syntax-highlighting.scss
48
+ - _sass/jenstep_theme.scss
49
+ - _sass/jenstep_theme/_base.scss
50
+ - _sass/jenstep_theme/_layout.scss
51
+ - _sass/jenstep_theme/_syntax-highlighting.scss
52
+ - assets/email-icon.svg
53
+ - assets/jenstep_theme-social-icons.svg
52
54
  - assets/main.scss
53
- - assets/personal-theme-social-icons.svg
54
- homepage: https://github.com/JenStep/personal-theme.git
55
+ homepage: https://github.com/JenStep/jenstep_theme.git
55
56
  licenses:
56
57
  - MIT
57
58
  metadata: {}