neeshtheme 0.1.6 → 0.1.7

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: f2b10a34951cea8cf7e858a7e3be5e725ca8c9ae74b57d221af88f82b13470d2
4
- data.tar.gz: a7a26bc6c3d36656df2c426804af98f2a0470750110236d6bf59ca3e9faf34c9
3
+ metadata.gz: 3d6d3173f878ee9e21307622e25994c872efb580299e62f75dc0c82f73e257ee
4
+ data.tar.gz: 87834f6bc53b4a5e79090b8d5481c827bc50b397eff0f80e7249b466de133eed
5
5
  SHA512:
6
- metadata.gz: 27bd00e271b3b33902e9087a404ff20f64674f1c5bee417cfa2b30fcb0d0e408cd45f8385f8d8d3e93577e9283554104876e1f2f71ab98184e55b8517fd75cad
7
- data.tar.gz: aebd31664daabf010e0f090dfc1a6cbb58efc4176f9c2f33f25b4159bd0a4fe79982ef28bacac85545878b9d65b1e1171b853a7dc6e1c7da6f45937a4dac091e
6
+ metadata.gz: 22ddc34eb7a7b9b7f57af2c19249a498559f7796251f0e40a651aa2d417046d7afa94b85e3f0f1afe2d6e92edbfb92bfb4b4b852f61c9c56efabda431f03fece
7
+ data.tar.gz: a096d144259a531d0df01f1faf46e3ec5e9917fe7edad1cc377084858f49fbeaf24a3640783be300118c7836cdfa959eb22c9addebeee4ce53ed11c45a6cdaf7
@@ -0,0 +1,5 @@
1
+ <head>
2
+ <meta charset="utf-8">
3
+ <meta name="viewport" content="width=device-width, initial-scale=1">
4
+ <link type="text/css" rel="stylesheet" href="/css/main.css">
5
+ </head>
@@ -0,0 +1,5 @@
1
+ <nav>
2
+ <ul>
3
+ <li><a href="/">{{site.title}}</a></li>
4
+ </ul>
5
+ </nav>
@@ -0,0 +1,5 @@
1
+ p, h1, h2, h3, h4, h5, h6, a {
2
+ font-family: sans-serif;
3
+ text-decoration: none;
4
+ color: #3a3a3a;
5
+ }
@@ -0,0 +1,26 @@
1
+ // Posts
2
+ .home {
3
+ padding: 4px;
4
+ border-radius: 4px;
5
+ box-shadow: 0 1px 3px rgba(0,0,0,.25);
6
+ }
7
+
8
+ .post-list-heading {
9
+
10
+ }
11
+
12
+ .post-list {
13
+ list-style: none;
14
+
15
+ li {
16
+ padding: 4px;
17
+ border-radius: 4px;
18
+ box-shadow: 0 1px 3px rgba(0,0,0,.25);
19
+ }
20
+ .post-meta {
21
+
22
+ }
23
+ .post-link {
24
+
25
+ }
26
+ }
@@ -0,0 +1,13 @@
1
+ nav {
2
+ width: 100%;
3
+
4
+ ul {
5
+ list-style: none;
6
+
7
+ li {
8
+ a {
9
+
10
+ }
11
+ }
12
+ }
13
+ }
@@ -0,0 +1,5 @@
1
+ @import
2
+ "general",
3
+ "home",
4
+ "nav"
5
+ ;
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: neeshtheme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - MisterMjir
@@ -61,10 +61,16 @@ extra_rdoc_files: []
61
61
  files:
62
62
  - LICENSE.txt
63
63
  - README.md
64
+ - _includes/head.html
65
+ - _includes/nav.html
64
66
  - _layouts/default.html
65
67
  - _layouts/home.html
66
68
  - _layouts/page.html
67
69
  - _layouts/post.html
70
+ - _sass/_general.scss
71
+ - _sass/_home.scss
72
+ - _sass/_nav.scss
73
+ - _sass/main.scss
68
74
  homepage: https://neeshtales.github.io
69
75
  licenses:
70
76
  - MIT