runeblog 0.2.54 → 0.2.59
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.lt3 +164 -69
- data/README.md +176 -65
- data/bin/blog +52 -4
- data/empty_view/remote/banner/austin-pano.jpg +0 -0
- data/empty_view/remote/banner/top.html +4 -0
- data/empty_view/themes/standard/banner/austin-pano.jpg +0 -0
- data/empty_view/themes/standard/banner/list.data +3 -0
- data/empty_view/themes/standard/banner/top.html +4 -0
- data/empty_view/themes/standard/blog/generate.lt3 +3 -16
- data/empty_view/themes/standard/blog/index.lt3 +1 -1
- data/empty_view/themes/standard/widgets/links/links.rb +21 -7
- data/empty_view/themes/standard/widgets/news/news.rb +70 -0
- data/empty_view/themes/standard/widgets/pages/pages.rb +70 -3
- data/empty_view/themes/standard/widgets/pinned/pinned.rb +26 -22
- data/lib/liveblog.rb +112 -97
- data/lib/post.rb +6 -6
- data/lib/runeblog.rb +2 -1
- data/lib/runeblog_version.rb +1 -1
- data/runeblog.gemspec +1 -0
- data/test/austin.rb +3 -2
- metadata +8 -9
- data/empty_view/remote/navbar/GIT_IS_DUMB +0 -1
- data/empty_view/themes/standard/banner/navbar.lt3 +0 -17
- data/empty_view/themes/standard/navbar/about.lt3 +0 -18
- data/empty_view/themes/standard/navbar/contact.lt3 +0 -18
- data/empty_view/themes/standard/navbar/faq.lt3 +0 -1
- data/empty_view/themes/standard/navbar/navbar.lt3 +0 -16
@@ -1,18 +0,0 @@
|
|
1
|
-
. --------------------------------------------------
|
2
|
-
. This is a sample file typical of page referenced
|
3
|
-
. directly from the navigation bar.
|
4
|
-
. It is like a special case of a page in the "pages"
|
5
|
-
. widget.
|
6
|
-
. --------------------------------------------------
|
7
|
-
|
8
|
-
.set this.title="About me"
|
9
|
-
. make this better later
|
10
|
-
<html><body>
|
11
|
-
<div class="content container-fluid mt-4">
|
12
|
-
<div class="row">
|
13
|
-
<h1>$this.title</h1>
|
14
|
-
. content starts here...
|
15
|
-
Blah blah blah...
|
16
|
-
</div>
|
17
|
-
</div>
|
18
|
-
</body></html>
|
@@ -1,18 +0,0 @@
|
|
1
|
-
. --------------------------------------------------
|
2
|
-
. This is a sample file typical of page referenced
|
3
|
-
. directly from the navigation bar.
|
4
|
-
. It is like a special case of a page in the "pages"
|
5
|
-
. widget.
|
6
|
-
. --------------------------------------------------
|
7
|
-
|
8
|
-
.set this.title="Contact"
|
9
|
-
. make this better later
|
10
|
-
<html><body>
|
11
|
-
<div class="content container-fluid mt-4">
|
12
|
-
<div class="row">
|
13
|
-
<h1>$this.title</h1>
|
14
|
-
. content starts here...
|
15
|
-
How to contact me by email, smoke signals, ICBM, seance, ...
|
16
|
-
</div>
|
17
|
-
</div>
|
18
|
-
</body></html>
|
@@ -1 +0,0 @@
|
|
1
|
-
.include ../widgets/pages/faq.lt3
|
@@ -1,16 +0,0 @@
|
|
1
|
-
. --------------------------------------------------
|
2
|
-
. This defines the content of the navigation bar.
|
3
|
-
. The first one is a special case.
|
4
|
-
. The others are understood to refer to .lt3 files
|
5
|
-
. such as navbar/about.lt3 (which is processed into
|
6
|
-
. HTML).
|
7
|
-
. The title may be more than one word. Quotes are
|
8
|
-
. not needed.
|
9
|
-
. --------------------------------------------------
|
10
|
-
|
11
|
-
.navbar
|
12
|
-
about About
|
13
|
-
contact Contact
|
14
|
-
faq FAQ
|
15
|
-
.end
|
16
|
-
|