File tree Expand file tree Collapse file tree 2 files changed +41
-1
lines changed Expand file tree Collapse file tree 2 files changed +41
-1
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change 1
1
# NKD
2
2
3
3
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
You can’t perform that action at this time.
0 commit comments