forked from texnixe/altair
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreadme.html
More file actions
106 lines (84 loc) · 4.87 KB
/
Copy pathreadme.html
File metadata and controls
106 lines (84 loc) · 4.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
<title>[Project name]</title>
</head>
<body>
<h1>[Project name]</h1>
<hr />
<p><em>short project description here</em></p>
<h2>Browser support</h2>
<ul>
<li>Chrome: latest stable version</li>
<li>Safari: latest stable version</li>
<li>Firefox: latest stable version</li>
<li>Internet Explorer 8+</li>
<li>iOS 6+</li>
</ul>
<p><em>add even more supported browsers to this list</em></p>
<ul>
<li><del>Internet Explorer 7</del></li>
<li><del>Opera: 12+</del></li>
<li><del>Mid-level Android: 2.x</del></li>
<li><del>High-end Android: 4.x</del></li>
<li><del>Windows Phone 7</del></li>
<li><del>Windows Phone 8</del></li>
<li><del>High-end BlackBerry: OS 7.0, 8.0 (bijv. BlackBerry 9900)</del></li>
<li><del>Opera Mobile: 12+</del></li>
<li><del>Opera Mini: 7+</del></li>
<li><del>Firefox Mobile (voor Android)</del></li>
<li><del>Dolphin Browser HD: 8.5+ (voor Android)</del></li>
<li><del>Dolphin Browser Mini: 2.3+ (voor Android)</del></li>
</ul>
<h2>Kirby CMS</h2>
<p>Kirby is the CMS used for this project. Kirby file–based CMS, meaning no database is involved for storing (and retrieving) content. All content is stored in plain text files (located in the root <em>content</em> folder).</p>
<p>More information about Kirby CMS here: <a href="http://getkirby.com">http://getkirby.com</a></p>
<h2>Web fonts</h2>
<p>This site makes use of the following (web) font(s):</p>
<ul>
<li><em>name of web font, and link to service and/or end user license agreement</em></li>
</ul>
<h2>Files</h2>
<ul>
<li><p><strong>readme.md</strong>: the file you're reading right now</p></li>
<li><p><strong>robots.txt</strong>: Permissions for search crawlers</p></li>
<li><p><strong>humans.txt</strong>: Give credit to people involved in the project</p></li>
<li><p><strong>favicon.ico</strong>, <strong>apple-touch-icon.png</strong>, <strong>apple-touch-icon-precomposed.png</strong>, <strong>apple-touch-icon-…-precomposed.png</strong>: The favicons (bookmark icons)</p></li>
<li><p><strong>assets/</strong> <em>(folder)</em>: The folder that includes all the assets</p>
<ul>
<li><p><strong>stylesheets/</strong> <em>(folder)</em>: The folder that includes all the SCSS, generated (with CodeKit) CSS files and styling images — the main (SCSS) folder contains:</p>
<ul>
<li><strong>main.scss</strong>: The stylesheet that contains all the styles for small up to wide (desktop) screen devices classes</li>
<li><strong>mobile.scss</strong>: The stylesheet that contains all the styles for mobile (smartphone and tablet) devices classes</li>
<li><strong>ie.scss</strong>: The stylesheet that contains all the wide screen styles + specific styles for IE < 9</li>
<li><strong>print.scss</strong>: The print stylesheet</li>
<li><strong>system/</strong> <em>(folder)</em>: All <em>system</em> partials</li>
<li><strong>base/</strong> <em>(folder)</em>: All <em>base</em> partials</li>
<li><strong>objects/</strong> <em>(folder)</em>: All <em>objects</em>, <em>modules</em> and <em>components</em> partials</li>
<li><strong>breakpoints/</strong> <em>(folder)</em>: All <em>breakpoints</em> partials</li>
</ul>
</li>
<li><p><strong>javascript/</strong> <em>(folder)</em>: The folder that includes all the JavaScript (library/framework) files, among others:</p>
<ul>
<li><strong>modernizr.min.js</strong>: Modernizr does feature detection</li>
<li><strong>jquery.min.js</strong>: The wel known and almost obliquitous JavaScript framework</li>
<li><strong>zepto.min.js</strong>: The minimalist JavaScript library for modern browsers (used for mobile)</li>
<li><strong>typekit.min.js</strong>: To load Typekit fonts asynchronous</li>
<li><strong>jquery.cookie.js</strong>: A lightweight jQuery plugin for reading, writing and deleting cookies</li>
<li><strong>jquery.appendaround.js</strong>: To move markup/content to another location in the DOM (e.g. for mobile navigation)</li>
<li>etc.</li>
</ul>
</li>
<li><p><strong>webfonts/</strong> <em>(folder)</em>: The folder where the web fonts reside</p></li>
</ul>
</li>
<li><p><strong>content/</strong> <em>(folder)</em>: The folder that contains all the text files (with Markdown syntax), images and/or videos — together they make up for the website's content compiled and outputted by Kirby CMS</p></li>
<li><strong>kirby/</strong> <em>(folder)</em>: The folder that contains all Kirby CMS files</li>
<li><strong>panel/</strong> <em>(folder)</em>: The folder that contains the Kirby CMS Panel files — a web-based admin interface for the Kirby installation</li>
<li><strong>site/</strong> <em>(folder)</em>: The folder that contains all the site templates, snippets, (Kirby CMS) plugins and (Kirby CMS) Panel blueprints and settings</li>
<li><strong>thumbs/</strong> <em>(folder)</em>: The folder that contains all automatically generated (and resized) site images</li>
</ul>
</body>
</html>