jekyll-lab-notebook 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +11 -30
  3. data/_includes/header.html +4 -3
  4. metadata +1 -15
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b6d37d2c940dbadf21b699758cd38df67d6eeba9
4
- data.tar.gz: 28740150596e85c8d192688aa2a41bd4daef9f4c
3
+ metadata.gz: '084173494e1639a2b46c2ed388c393f06235ebae'
4
+ data.tar.gz: 703ced5ec3f0a792197763d592fe26799bebd13b
5
5
  SHA512:
6
- metadata.gz: eb96a624b25178797eacc93649e3c09258a2c8190bf0d29167bd307c3064019828424823ea03a7a20002d898148da65548ad669c54b02f2727bb3d00b6caf8cf
7
- data.tar.gz: f934f281af6ca2de3fba0b64f643348c7f6372d4733fb74a0a96b5a5e673c45306d093c4af1069d9f48c6ca74a15468230559412168ec4e86fb835f3d69971c7
6
+ metadata.gz: 15c967f43b76bc9ae677f9b7c5dc6b7b05b870bc1daad92975101fda17aa2b3838b32845b3c5fa836c997bc7fbf4d6d4d40c085391975ef73c12f8509ecc322c
7
+ data.tar.gz: 16704a7a8cd8a25a8dfeaff5e3b5981b58c627df45e3b9b704bea16c7dac64ffc859740e60085ba1cbda8bd29dd17449bbca8fd4682be948f3b9f24324cc82e8
data/README.md CHANGED
@@ -1,34 +1,20 @@
1
1
  # jekyll-lab-notebook
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` and your sass in `_sass`. To experiment with this code, add some sample content and run `bundle exec jekyll serve` – this directory is setup just like a Jekyll site!
3
+ [![Gem Version](https://badge.fury.io/rb/jekyll-lab-notebook.svg)](https://badge.fury.io/rb/jekyll-lab-notebook)
4
4
 
5
- TODO: Delete this and the text above, and describe your gem
5
+ Supercharge your electronic lab notebook!
6
6
 
7
- ## Installation
7
+ This is a full-featured jekyll theme that lets you quickly write markdown
8
+ notebook entries and will create a great HTML website that you can run locally
9
+ to view all your hard work. It's hackable to its core so you can tweak it to
10
+ your heart's desire. Add pages, change layouts, add cool jekyll plugins,
11
+ whatever; think of this as your springboard.
8
12
 
9
- Add this line to your Jekyll site's `Gemfile`:
13
+ ![](screenshot.png)
10
14
 
11
- ```ruby
12
- gem "jekyll-lab-notebook"
13
- ```
15
+ ## Installation and Usage
14
16
 
15
- And add this line to your Jekyll site's `_config.yml`:
16
-
17
- ```yaml
18
- theme: jekyll-lab-notebook
19
- ```
20
-
21
- And then execute:
22
-
23
- $ bundle
24
-
25
- Or install it yourself as:
26
-
27
- $ gem install jekyll-lab-notebook
28
-
29
- ## Usage
30
-
31
- TODO: Write usage instructions here. Describe your available layouts, includes, and/or sass.
17
+ TODO
32
18
 
33
19
  ## Contributing
34
20
 
@@ -36,13 +22,8 @@ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERN
36
22
 
37
23
  ## Development
38
24
 
39
- To set up your environment to develop this theme, run `bundle install`.
40
-
41
- 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.
42
-
43
- When your theme is released, only the files in `_layouts`, `_includes`, and `_sass` tracked with Git will be released.
25
+ TODO
44
26
 
45
27
  ## License
46
28
 
47
29
  The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
48
-
@@ -5,9 +5,10 @@
5
5
 
6
6
  <nav class="site-nav">
7
7
  <div class="trigger">
8
- <a class="page-link" href="/projects">Projects</a>
9
- <a class="page-link" href="/meetings">Meetings</a>
10
- <a class="page-link" href="http://tamasnagy.com">tamasnagy.com</a>
8
+ {% for page in site.header-pages %}
9
+ <a class="page-link" href="/{{ page | downcase }}">{{ page }}</a>
10
+ {% endfor %}
11
+ <a class="page-link" href="{{ site.website }}">{{ site.website | remove: "https://" | remove: "http://" }}</a>
11
12
  </div>
12
13
  </nav>
13
14
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-lab-notebook
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tamas Nagy
@@ -24,20 +24,6 @@ dependencies:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: '3.5'
27
- - !ruby/object:Gem::Dependency
28
- name: nokogiri
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - "~>"
32
- - !ruby/object:Gem::Version
33
- version: '1.8'
34
- type: :runtime
35
- prerelease: false
36
- version_requirements: !ruby/object:Gem::Requirement
37
- requirements:
38
- - - "~>"
39
- - !ruby/object:Gem::Version
40
- version: '1.8'
41
27
  - !ruby/object:Gem::Dependency
42
28
  name: jekyll-lab-notebook-plugins
43
29
  requirement: !ruby/object:Gem::Requirement