nichols-works 0.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 +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +39 -0
- data/_includes/head.html +11 -0
- data/_layouts/home.html +32 -0
- data/_layouts/page.html +5 -0
- data/_layouts/post.html +5 -0
- data/_sass/_animate.scss +1579 -0
- data/_sass/_reset.scss +48 -0
- data/_sass/_variables.scss +6 -0
- data/_sass/_zenburn.scss +74 -0
- data/_sass/components/_panel.scss +91 -0
- data/_sass/font-awesome/_animated.scss +34 -0
- data/_sass/font-awesome/_bordered-pulled.scss +25 -0
- data/_sass/font-awesome/_core.scss +12 -0
- data/_sass/font-awesome/_fixed-width.scss +6 -0
- data/_sass/font-awesome/_icons.scss +789 -0
- data/_sass/font-awesome/_larger.scss +13 -0
- data/_sass/font-awesome/_list.scss +19 -0
- data/_sass/font-awesome/_mixins.scss +60 -0
- data/_sass/font-awesome/_path.scss +15 -0
- data/_sass/font-awesome/_rotated-flipped.scss +20 -0
- data/_sass/font-awesome/_screen-reader.scss +5 -0
- data/_sass/font-awesome/_stacked.scss +20 -0
- data/_sass/font-awesome/_variables.scss +799 -0
- data/_sass/font-awesome/font-awesome.scss +18 -0
- data/assets/css/main.scss +7 -0
- data/assets/images/cover.jpg +0 -0
- metadata +127 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 92894032c3b6c62d9e71572df8a89824724f3a9c
|
4
|
+
data.tar.gz: 12c61e3a406b4905f0edb0c02989186c3e530a93
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 4b60a49b7f99292be2fc6844e698f65e1999545e88195d91a523b0e5fcaf59212678dada6fd24a98fd4695f014ee88ecab66448c12f17bb78e434574a80dad33
|
7
|
+
data.tar.gz: 91ad7dba6ec86514cb05c72d8ff69c19c0f2a7e17ed489b1dfcda02f56b41e58e4ce2ce99f88059ddb4b7cf59dc6d8a2df19cd8abad95a9c4e3a9cd02f7ecd15
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2017 Dan Nichols
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,39 @@
|
|
1
|
+
# nichols-works
|
2
|
+
|
3
|
+
A theme for my Jekyll site. Based on a few themes I have seen floating around the internet, including [Aerial by HTML5 UP](https://html5up.net/aerial) and [Uno for Ghost](https://github.com/daleanthony/uno), but written from the ground up by me.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your Jekyll site's `Gemfile`:
|
8
|
+
|
9
|
+
```ruby
|
10
|
+
gem "nichols-works"
|
11
|
+
```
|
12
|
+
|
13
|
+
And add this line to your Jekyll site's `_config.yml`:
|
14
|
+
|
15
|
+
```yaml
|
16
|
+
theme: nichols-works
|
17
|
+
```
|
18
|
+
|
19
|
+
And then execute:
|
20
|
+
|
21
|
+
$ bundle
|
22
|
+
|
23
|
+
Or install it yourself as:
|
24
|
+
|
25
|
+
$ gem install nichols-works
|
26
|
+
|
27
|
+
## Usage
|
28
|
+
|
29
|
+
TODO: Write usage instructions here. Describe your available layouts, includes, and/or sass.
|
30
|
+
|
31
|
+
## Development
|
32
|
+
|
33
|
+
To set up your environment to develop this theme, run `bundle install`.
|
34
|
+
|
35
|
+
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.
|
36
|
+
|
37
|
+
## License
|
38
|
+
|
39
|
+
The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/_includes/head.html
ADDED
@@ -0,0 +1,11 @@
|
|
1
|
+
<!-- Head -->
|
2
|
+
<head>
|
3
|
+
<title>{{ site.title }}</title>
|
4
|
+
|
5
|
+
<meta charset="utf-8" />
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
|
7
|
+
<meta author="Dan Nichols" />
|
8
|
+
|
9
|
+
<link rel="stylesheet" href="{{ 'assets/css/main.css' | relative_url }}" />
|
10
|
+
<link rel="alternate" type="application/rss+xml" title="{{ site.title }}" href="{{ 'feed.xml' | relative_url }}" />
|
11
|
+
</head>
|
data/_layouts/home.html
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
<html>
|
2
|
+
{% include head.html %}
|
3
|
+
<body class="is-loading">
|
4
|
+
<header class="panel">
|
5
|
+
<section class="container">
|
6
|
+
<div class="overlay"></div>
|
7
|
+
<div class="contents">
|
8
|
+
<div class="title">
|
9
|
+
{{ site.subtitle }}
|
10
|
+
</div>
|
11
|
+
<hr class="divider large" />
|
12
|
+
<div class="description">
|
13
|
+
{{ site.description }}
|
14
|
+
</div>
|
15
|
+
<hr class="divider small" />
|
16
|
+
<nav>
|
17
|
+
<ul>
|
18
|
+
<li class="social-link">
|
19
|
+
<a href="{{ '/blog' | relative_url }}">Blog</a>
|
20
|
+
</li>
|
21
|
+
{% for social in site.social %}
|
22
|
+
<li class="social-link">
|
23
|
+
<a href="{{ social[1].uri }}"><i class="fa {{ social[1].icon }}"></i></a>
|
24
|
+
</li>
|
25
|
+
{% endfor %}
|
26
|
+
</ul>
|
27
|
+
</nav>
|
28
|
+
</div>
|
29
|
+
</section>
|
30
|
+
</header>
|
31
|
+
</body>
|
32
|
+
</html>
|
data/_layouts/page.html
ADDED