Skip to content

Commit ef7f0a0

Browse files
committed
Convert submodule to folder
1 parent 2d8ca62 commit ef7f0a0

File tree

153 files changed

+10909
-4
lines changed

Some content is hidden

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

153 files changed

+10909
-4
lines changed

.gitmodules

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

theme

Lines changed: 0 additions & 1 deletion
This file was deleted.

theme/.editorconfig

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Default settings
2+
[*]
3+
charset = utf-8
4+
indent_style = space
5+
indent_size = 2
6+
end_of_line = lf
7+
insert_final_newline = true
8+
trim_trailing_whitespace = true
9+
10+
# Markdown files
11+
[*.md]
12+
trim_trailing_whitespace = false

theme/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/.vscode
2+
/.idea

theme/LICENSE.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) Dave Glick
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

theme/README.md

Lines changed: 301 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

theme/input/_copyright.cshtml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<p class="copyright">@Document.GetString(WebKeys.Copyright)</p>

theme/input/_footer.cshtml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<footer>
2+
<div class="container">
3+
<div class="row">
4+
<div class="col-md-12 text-center">
5+
@if (Document.ContainsKey("Canonical"))
6+
{
7+
<p class="text-center small text-muted">Originally published at <a href='@Document.GetString("Canonical")'>@Document.GetString("Canonical")</a>.</p>
8+
<br />
9+
}
10+
@Html.Partial("_copyright")
11+
<ul class="list-inline text-center small">
12+
@{
13+
IDocument rssFeed = Outputs["**/*.rss"].FirstOrDefault();
14+
IDocument atomFeed = Outputs["**/*.atom"].FirstOrDefault();
15+
}
16+
@if (rssFeed != null) {
17+
<li class="list-inline-item">
18+
<a href="@Context.GetLink(rssFeed)"><i class="fa fa-rss"></i> RSS Feed</a>
19+
</li>
20+
}
21+
@if (atomFeed != null) {
22+
<li class="list-inline-item">
23+
<a href="@Context.GetLink(atomFeed)"><i class="fa fa-rss"></i> Atom Feed</a>
24+
</li>
25+
}
26+
</ul>
27+
<br />
28+
<div class="font-weight-bold small"><a href="https://statiq.dev">Generated by Statiq</a></div>
29+
</div>
30+
</div>
31+
</div>
32+
</footer>

theme/input/_head.cshtml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

0 commit comments

Comments
 (0)