Skip to content

Commit fac55d4

Browse files
author
mrmrs
committed
Site tree.
1 parent 3038760 commit fac55d4

File tree

2 files changed

+41
-1
lines changed

2 files changed

+41
-1
lines changed

.htaccess

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# GZIP the assets that should be gzipped. This file goes in your root directory
2+
# if you're serving up your site via APACHE. http://httpd.apache.org/docs/2.2/mod/mod_deflate.html
3+
4+
AddOutputFilterByType DEFLATE text/plain
5+
AddOutputFilterByType DEFLATE text/html
6+
AddOutputFilterByType DEFLATE text/xml
7+
AddOutputFilterByType DEFLATE text/css
8+
AddOutputFilterByType DEFLATE application/xml
9+
AddOutputFilterByType DEFLATE application/xhtml+xml
10+
AddOutputFilterByType DEFLATE application/rss+xml
11+
AddOutputFilterByType DEFLATE application/javascript
12+
AddOutputFilterByType DEFLATE application/x-javascript

README.md

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,32 @@
11
# NKD
22

33
Barebones scaffolding for a new HTML5 Jekyll project.
4-
Includes a normalize.css and some blank media queries.
4+
5+
nkd [Site root]
6+
├── README.md [What you're reading now]
7+
├── Rakefile [Rake sass, rake dev]
8+
├── _config.yml [Config for site. Site will run without config in defulat mode]
9+
├── _includes [Common includes I need for sites / pages]
10+
│ ├── _footer.html
11+
│ ├── _head.html
12+
│ ├── _js_includes.html
13+
│ └── _navigation_main.html
14+
├── _layouts [Two layout files: default and post. both are identical by default.]
15+
│ ├── default.html
16+
│ └── post.html
17+
├── _posts [Directory where you'd put posts...if you want any]
18+
├── _sass
19+
│ ├── _grid.scss [Blank media queries. Not included or compiled to css]
20+
│ ├── i.scss
21+
│ └── normalize.scss
22+
├── _site [compiled website]
23+
│ ├── README.md
24+
│ ├── Rakefile
25+
│ ├── css
26+
│ │ ├── i.css
27+
│ │ └── normalize.css
28+
│ └── index.html
29+
├── css
30+
│ ├── i.css
31+
│ └── normalize.css
32+
└── index.html

0 commit comments

Comments
 (0)