mpiwg-jekyll-theme 0.2.1 → 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 659bf1415090e6fa68c68ce0ede8545198ea4c5fe34d7635db1c97a4bc8ea8e0
4
- data.tar.gz: a9af6e4000c6021ea28219e41c35fe7b10b95c00c9b1af7b0df638836b7a44a0
3
+ metadata.gz: a65bb0958c084a1c7eb584673a3f1b8284dfb9b9ee9f0f4818c3385ef2595a20
4
+ data.tar.gz: c1d454a947d005aa294ab0858946bacf7af9627890be589895a670455f8ce7f0
5
5
  SHA512:
6
- metadata.gz: 2609dafa35938d4ba42a7a95cd7ec9d188a214116169df1f932bef8633460515fe9b959637afab23a3ddd7f566a088f1aa39354d1bcd9745345ce16d1b7759a9
7
- data.tar.gz: ebcf2d128990ca6f5832d2fc15f542e3ec9bb123061c36d64dcb7b4b56d2e2052d73e78d73d21fd8b84faaa9f5a3f08ca433bef2012e6974a0fd8fb6998252a3
6
+ metadata.gz: 0a11293d13eac62681fa4584865a78314d07b4086d7e2f5b8323fa0f448848fdd6a3d05c31dd116016a1dcc5a6f2ec039dcf0f676769e0acd819ee6f6a4e0268
7
+ data.tar.gz: e3d19528097e51128a33c8633d3b0be4b689ffae023f1a808c61abdc502cd6b7d38ec3072052096ac6ff41d478e8ebe5b12d072799b8ea13352870a7d4605b4d
data/README.md CHANGED
@@ -1,10 +1,20 @@
1
- # mpiwg-jekyll-theme
1
+ # MPIWG Jekyll Theme
2
2
 
3
- Welcome to your new Jekyll theme! In this directory, you'll find the files you need to be able to package up your theme into a gem. Put your layouts in `_layouts`, your includes in `_includes`, your sass files in `_sass` and any other assets in `assets`.
3
+ This is a Jekyll Theme for MPIWG Microsites.
4
4
 
5
- To experiment with this code, add some sample content and run `bundle exec jekyll serve` – this directory is setup just like a Jekyll site!
5
+ ## Development
6
6
 
7
- TODO: Delete this and the text above, and describe your gem
7
+ To set up your environment to develop this theme, run `bundle install`.
8
+
9
+ 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.
10
+
11
+ When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
12
+ To add a custom directory to your theme-gem, please edit the regexp in `mpiwg-jekyll-theme.gemspec` accordingly.
13
+
14
+ 1. Bump version number in `mpiwg-jekyll-theme.gemspec` (use semantic versioning)
15
+ 2. Commit all your changes to git
16
+ 3. Build theme with `gem build mpiwg-jekyll-theme`
17
+ 4. Publish theme with `gem push jekyll-theme-awesome-*.gem`
8
18
 
9
19
 
10
20
  ## Installation
@@ -33,18 +43,6 @@ Or install it yourself as:
33
43
 
34
44
  TODO: Write usage instructions here. Describe your available layouts, includes, sass and/or assets.
35
45
 
36
- ## Contributing
37
-
38
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/hello. 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.
39
-
40
- ## Development
41
-
42
- To set up your environment to develop this theme, run `bundle install`.
43
-
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
-
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 `mpiwg-jekyll-theme.gemspec` accordingly.
48
46
 
49
47
  ## License
50
48
 
@@ -7,6 +7,7 @@
7
7
  <title>{{ site.title }}</title>
8
8
  <link rel="stylesheet" href="/assets/normalize.css">
9
9
  <link rel="stylesheet" href="/assets/styles.css">
10
+ <link rel="stylesheet" href="/assets/main.css">
10
11
  </head>
11
12
 
12
13
  <body class="bg-site">
@@ -28,10 +29,9 @@
28
29
  <img src="/assets/mpiwgLogo.png" class="loading" />
29
30
  {% endif %}
30
31
  </div>
31
- <h4 class="col xs-12">{% if site.title %}{{ site.title }}{% else %}Site Title{% endif %}
32
+ <h4 class="col xs-12">{{ site.title }}
32
33
  <span
33
- class="grid middle center no-gutter logo-name-en">{% if site.subtitle %}{{ site.subtitle }}{% else %}Site
34
- Subtitle{% endif %}</span>
34
+ class="grid middle center no-gutter logo-name-en">{{ site.subtitle }}</span>
35
35
  </h4>
36
36
  </a>
37
37
  </header>
@@ -20,9 +20,9 @@
20
20
 
21
21
  <section class="grid">
22
22
  <section class="col">
23
-
24
- {{content}}
25
-
23
+ <div class="paragraph">
24
+ {{content}}
25
+ </div>
26
26
  </section>
27
27
  </section>
28
28
 
@@ -0,0 +1,6 @@
1
+ ---
2
+ ---
3
+
4
+ #navbar ul {
5
+ margin-bottom: 0
6
+ }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mpiwg-jekyll-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Florian Kräutli
@@ -67,6 +67,7 @@ files:
67
67
  - _layouts/default.html
68
68
  - _layouts/page.html
69
69
  - _layouts/post.html
70
+ - assets/main.scss
70
71
  - assets/mpiwgLogo.png
71
72
  - assets/normalize.css
72
73
  - assets/styles.css