Skip to content

Commit d4b7394

Browse files
committed
Added Documentation
1 parent 9cee24c commit d4b7394

File tree

161 files changed

+11826
-135
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

161 files changed

+11826
-135
lines changed

_config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,4 @@ google-analytics: "UA-86657406-1"
3030
# Build settings
3131
markdown: kramdown
3232
theme: minima
33+
highlighter: rouge

_includes/footer.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<hr>
12
<!-- Footer -->
23
<footer>
34
<div class="container">
@@ -59,7 +60,7 @@
5960
</a>
6061
</li>
6162
</ul>
62-
<p class="copyright text-muted"> Copyright © <a href="http://github.com/mrLSD" target="_blank">Evgeny Ukhanov aka mrLSD</a> and <a href="https://github.com/iron-cms" target="_blank">Iron CMS</a> 2016. </p>
63+
<p class="copyright text-muted"> Copyright © <a href="http://github.com/mrLSD" target="_blank">Evgeny Ukhanov (mrLSD)</a>, <a href="https://github.com/iron-cms" target="_blank">Iron CMS</a> 2016. </p>
6364
</div>
6465
</div>
6566
</div>

_includes/nav.html

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,11 @@
1717
{% assign group = 'navigation' %}
1818
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
1919
<ul class="nav navbar-nav">
20-
<li>
21-
<a href="{{ site.baseurl }}/">Home</a>
22-
</li>
20+
{% if page.url == "/" %}
21+
<li class="active"><a href="{{ site.baseurl }}/">Home</a></li>
22+
{% else %}
23+
<li><a href="{{ site.baseurl }}/">Home</a></li>
24+
{% endif %}
2325
{% for node in pages_list %}
2426
{% if group == null or group == node.group %}
2527
{% if page.url == node.url %}
@@ -29,6 +31,7 @@
2931
{% endif %}
3032
{% endif %}
3133
{% endfor %}
34+
<li><a href="{{ site.baseurl }}/doc/iron_cms/">Documentation</a></li>
3235
</ul>
3336
</div>
3437
<!-- /.navbar-collapse -->

_layouts/default.html

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,9 @@
11
<!DOCTYPE html>
22
<html lang="en">
3-
43
{% include head.html %}
5-
64
<body>
7-
85
{% include nav.html %}
9-
106
{{ content }}
11-
127
{% include footer.html %}
13-
148
</body>
15-
16-
</html>
9+
</html>

_layouts/page.html

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,8 @@ <h1 class="display-3">{% if page.title %}{{ page.title }}{% else %}{{ site.title
1212
{% endif %}
1313
</div>
1414
</div>
15-
{{ content }}
15+
<div class="container">
16+
<div class="row">
17+
{{ content }}
18+
</div>
19+
</div>

about.html

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
---
22
layout: page
33
title: "About Iron CMS"
4-
description: "Collaborators working on this project."
4+
description: "What Iron CMS is and other useful facts."
55
group: "navigation"
66
---
7+
<h2>Iron CMS for smart web</h2>
78

9+
<p>Iron CMS is a fast and flexible middleware-oriented server
10+
solution that provides robust foundation for creating
11+
complex applications and RESTful APIs. Some useful
12+
middleware are bundled with Iron CMS and allowing
13+
for ridiculously modular setups.</p>

css/_bootstrap.min.css

Lines changed: 0 additions & 6 deletions
This file was deleted.

css/syntax.css

Lines changed: 61 additions & 84 deletions
Original file line numberDiff line numberDiff line change
@@ -1,84 +1,61 @@
1-
/* to make lines scroll instead of wrap */
2-
/* from http://stackoverflow.com/a/23393920 */
3-
4-
.highlight pre code * {
5-
white-space: nowrap; // this sets all children inside to nowrap
6-
}
7-
8-
.highlight pre {
9-
overflow-x: auto; // this sets the scrolling in x
10-
}
11-
12-
.highlight pre code {
13-
white-space: pre; // forces <code> to respect <pre> formatting
14-
}
15-
16-
17-
/*
18-
* GitHub style for Pygments syntax highlighter, for use with Jekyll
19-
* Courtesy of GitHub.com
20-
*/
21-
22-
.highlight pre, pre, .highlight .hll { background-color: #f8f8f8; border: 1px solid #ccc; padding: 6px 10px; border-radius: 3px; }
23-
.highlight .c { color: #999988; font-style: italic; }
24-
.highlight .err { color: #a61717; background-color: #e3d2d2; }
25-
.highlight .k { font-weight: bold; }
26-
.highlight .o { font-weight: bold; }
27-
.highlight .cm { color: #999988; font-style: italic; }
28-
.highlight .cp { color: #999999; font-weight: bold; }
29-
.highlight .c1 { color: #999988; font-style: italic; }
30-
.highlight .cs { color: #999999; font-weight: bold; font-style: italic; }
31-
.highlight .gd { color: #000000; background-color: #ffdddd; }
32-
.highlight .gd .x { color: #000000; background-color: #ffaaaa; }
33-
.highlight .ge { font-style: italic; }
34-
.highlight .gr { color: #aa0000; }
35-
.highlight .gh { color: #999999; }
36-
.highlight .gi { color: #000000; background-color: #ddffdd; }
37-
.highlight .gi .x { color: #000000; background-color: #aaffaa; }
38-
.highlight .go { color: #888888; }
39-
.highlight .gp { color: #555555; }
40-
.highlight .gs { font-weight: bold; }
41-
.highlight .gu { color: #800080; font-weight: bold; }
42-
.highlight .gt { color: #aa0000; }
43-
.highlight .kc { font-weight: bold; }
44-
.highlight .kd { font-weight: bold; }
45-
.highlight .kn { font-weight: bold; }
46-
.highlight .kp { font-weight: bold; }
47-
.highlight .kr { font-weight: bold; }
48-
.highlight .kt { color: #445588; font-weight: bold; }
49-
.highlight .m { color: #009999; }
50-
.highlight .s { color: #dd1144; }
51-
.highlight .n { color: #333333; }
52-
.highlight .na { color: teal; }
53-
.highlight .nb { color: #0086b3; }
54-
.highlight .nc { color: #445588; font-weight: bold; }
55-
.highlight .no { color: teal; }
56-
.highlight .ni { color: purple; }
57-
.highlight .ne { color: #990000; font-weight: bold; }
58-
.highlight .nf { color: #990000; font-weight: bold; }
59-
.highlight .nn { color: #555555; }
60-
.highlight .nt { color: navy; }
61-
.highlight .nv { color: teal; }
62-
.highlight .ow { font-weight: bold; }
63-
.highlight .w { color: #bbbbbb; }
64-
.highlight .mf { color: #009999; }
65-
.highlight .mh { color: #009999; }
66-
.highlight .mi { color: #009999; }
67-
.highlight .mo { color: #009999; }
68-
.highlight .sb { color: #dd1144; }
69-
.highlight .sc { color: #dd1144; }
70-
.highlight .sd { color: #dd1144; }
71-
.highlight .s2 { color: #dd1144; }
72-
.highlight .se { color: #dd1144; }
73-
.highlight .sh { color: #dd1144; }
74-
.highlight .si { color: #dd1144; }
75-
.highlight .sx { color: #dd1144; }
76-
.highlight .sr { color: #009926; }
77-
.highlight .s1 { color: #dd1144; }
78-
.highlight .ss { color: #990073; }
79-
.highlight .bp { color: #999999; }
80-
.highlight .vc { color: teal; }
81-
.highlight .vg { color: teal; }
82-
.highlight .vi { color: teal; }
83-
.highlight .il { color: #009999; }
84-
.highlight .gc { color: #999; background-color: #EAF2F5; }
1+
.highlight .hll { background-color: #ffffcc }
2+
.highlight .c { color: #999988; font-style: italic } /* Comment */
3+
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
4+
.highlight .k { color: #000000; font-weight: bold } /* Keyword */
5+
.highlight .o { color: #000000; font-weight: bold } /* Operator */
6+
.highlight .cm { color: #999988; font-style: italic } /* Comment.Multiline */
7+
.highlight .cp { color: #999999; font-weight: bold; font-style: italic } /* Comment.Preproc */
8+
.highlight .c1 { color: #999988; font-style: italic } /* Comment.Single */
9+
.highlight .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */
10+
.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
11+
.highlight .ge { color: #000000; font-style: italic } /* Generic.Emph */
12+
.highlight .gr { color: #aa0000 } /* Generic.Error */
13+
.highlight .gh { color: #999999 } /* Generic.Heading */
14+
.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
15+
.highlight .go { color: #888888 } /* Generic.Output */
16+
.highlight .gp { color: #555555 } /* Generic.Prompt */
17+
.highlight .gs { font-weight: bold } /* Generic.Strong */
18+
.highlight .gu { color: #aaaaaa } /* Generic.Subheading */
19+
.highlight .gt { color: #aa0000 } /* Generic.Traceback */
20+
.highlight .kc { color: #000000; font-weight: bold } /* Keyword.Constant */
21+
.highlight .kd { color: #000000; font-weight: bold } /* Keyword.Declaration */
22+
.highlight .kn { color: #000000; font-weight: bold } /* Keyword.Namespace */
23+
.highlight .kp { color: #000000; font-weight: bold } /* Keyword.Pseudo */
24+
.highlight .kr { color: #000000; font-weight: bold } /* Keyword.Reserved */
25+
.highlight .kt { color: #445588; font-weight: bold } /* Keyword.Type */
26+
.highlight .m { color: #009999 } /* Literal.Number */
27+
.highlight .s { color: #d01040 } /* Literal.String */
28+
.highlight .na { color: #008080 } /* Name.Attribute */
29+
.highlight .nb { color: #0086B3 } /* Name.Builtin */
30+
.highlight .nc { color: #445588; font-weight: bold } /* Name.Class */
31+
.highlight .no { color: #008080 } /* Name.Constant */
32+
.highlight .nd { color: #3c5d5d; font-weight: bold } /* Name.Decorator */
33+
.highlight .ni { color: #800080 } /* Name.Entity */
34+
.highlight .ne { color: #990000; font-weight: bold } /* Name.Exception */
35+
.highlight .nf { color: #990000; font-weight: bold } /* Name.Function */
36+
.highlight .nl { color: #990000; font-weight: bold } /* Name.Label */
37+
.highlight .nn { color: #555555 } /* Name.Namespace */
38+
.highlight .nt { color: #000080 } /* Name.Tag */
39+
.highlight .nv { color: #008080 } /* Name.Variable */
40+
.highlight .ow { color: #000000; font-weight: bold } /* Operator.Word */
41+
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
42+
.highlight .mf { color: #009999 } /* Literal.Number.Float */
43+
.highlight .mh { color: #009999 } /* Literal.Number.Hex */
44+
.highlight .mi { color: #009999 } /* Literal.Number.Integer */
45+
.highlight .mo { color: #009999 } /* Literal.Number.Oct */
46+
.highlight .sb { color: #d01040 } /* Literal.String.Backtick */
47+
.highlight .sc { color: #d01040 } /* Literal.String.Char */
48+
.highlight .sd { color: #d01040 } /* Literal.String.Doc */
49+
.highlight .s2 { color: #d01040 } /* Literal.String.Double */
50+
.highlight .se { color: #d01040 } /* Literal.String.Escape */
51+
.highlight .sh { color: #d01040 } /* Literal.String.Heredoc */
52+
.highlight .si { color: #d01040 } /* Literal.String.Interpol */
53+
.highlight .sx { color: #d01040 } /* Literal.String.Other */
54+
.highlight .sr { color: #009926 } /* Literal.String.Regex */
55+
.highlight .s1 { color: #d01040 } /* Literal.String.Single */
56+
.highlight .ss { color: #990073 } /* Literal.String.Symbol */
57+
.highlight .bp { color: #999999 } /* Name.Builtin.Pseudo */
58+
.highlight .vc { color: #008080 } /* Name.Variable.Class */
59+
.highlight .vg { color: #008080 } /* Name.Variable.Global */
60+
.highlight .vi { color: #008080 } /* Name.Variable.Instance */
61+
.highlight .il { color: #009999 } /* Literal.Number.Integer.Long */

doc/.lock

Whitespace-only changes.

doc/COPYRIGHT.txt

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
These documentation pages include resources by third parties. This copyright
2+
file applies only to those resources. The following third party resources are
3+
included, and carry their own copyright notices and license terms:
4+
5+
* Fira Sans (FiraSans-Regular.woff, FiraSans-Medium.woff):
6+
7+
Copyright (c) 2014, Mozilla Foundation https://mozilla.org/
8+
with Reserved Font Name Fira Sans.
9+
10+
Copyright (c) 2014, Telefonica S.A.
11+
12+
Licensed under the SIL Open Font License, Version 1.1.
13+
See FiraSans-LICENSE.txt.
14+
15+
* Heuristica (Heuristica-Italic.woff):
16+
17+
Copyright 1989, 1991 Adobe Systems Incorporated. All rights reserved.
18+
Utopia is either a registered trademark or trademark of Adobe Systems
19+
Incorporated in the United States and/or other countries. Used under
20+
license.
21+
22+
Copyright 2006 Han The Thanh, Vntopia font family, http://vntex.sf.net
23+
24+
Copyright (c) 2008-2012, Andrey V. Panov (panov@canopus.iacp.dvo.ru),
25+
with Reserved Font Name Heuristica.
26+
27+
Licensed under the SIL Open Font License, Version 1.1.
28+
See Heuristica-LICENSE.txt.
29+
30+
* jQuery (jquery-2.1.4.min.js):
31+
32+
Copyright 2005, 2015 jQuery Foundation, Inc.
33+
Licensed under the MIT license (see LICENSE-MIT.txt).
34+
35+
* rustdoc.css, main.js, and playpen.js:
36+
37+
Copyright 2015 The Rust Developers.
38+
Licensed under the Apache License, Version 2.0 (see LICENSE-APACHE.txt) or
39+
the MIT license (LICENSE-MIT.txt) at your option.
40+
41+
* normalize.css:
42+
43+
Copyright (c) Nicolas Gallagher and Jonathan Neal.
44+
Licensed under the MIT license (see LICENSE-MIT.txt).
45+
46+
* Source Code Pro (SourceCodePro-Regular.woff, SourceCodePro-Semibold.woff):
47+
48+
Copyright 2010, 2012 Adobe Systems Incorporated (http://www.adobe.com/),
49+
with Reserved Font Name 'Source'. All Rights Reserved. Source is a trademark
50+
of Adobe Systems Incorporated in the United States and/or other countries.
51+
52+
Licensed under the SIL Open Font License, Version 1.1.
53+
See SourceCodePro-LICENSE.txt.
54+
55+
* Source Serif Pro (SourceSerifPro-Regular.woff, SourceSerifPro-Bold.woff):
56+
57+
Copyright 2014 Adobe Systems Incorporated (http://www.adobe.com/), with
58+
Reserved Font Name 'Source'. All Rights Reserved. Source is a trademark of
59+
Adobe Systems Incorporated in the United States and/or other countries.
60+
61+
Licensed under the SIL Open Font License, Version 1.1.
62+
See SourceSerifPro-LICENSE.txt.
63+
64+
This copyright file is intended to be distributed with rustdoc output.

0 commit comments

Comments
 (0)