runeblog 0.2.85 → 0.2.86
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/empty_view/themes/standard/banner/top.lt3 +5 -5
- data/lib/runeblog.rb +4 -6
- data/lib/runeblog_version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9fbecc77f77bf8c80aaba35e60ba800c81576bdb17b2ea14e2e2f9a5e87e8f03
|
|
4
|
+
data.tar.gz: 3dd8e585304e748d150fe95a735a187c890517a347df413ed3e860d5fb705400
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c2b4a8e13d9c0e507a331125815f0d7321a2dd9dabcee8b9955e7fbdd45c70ad80854b134adbcce0acabc6e41bb91f6aff73b1d1250b18f55544f30a88eba646
|
|
7
|
+
data.tar.gz: 45400556fb87ed962227d6d91aca474b016bb7680c9b48af7b97b697b47b369748efb85c3a5e974c70db8cc8fe0d376e4ab78a6036ffb28ee26152e86cb6b22f
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
.nopara
|
|
2
|
-
<svg width="98%" height="
|
|
2
|
+
<svg width="98%" height="120"
|
|
3
3
|
viewBox="0 0 98% 100">
|
|
4
4
|
<defs>
|
|
5
5
|
<linearGradient id="grad1" x1="100%" y1="100%" x2="0%" y2="100%">
|
|
@@ -8,12 +8,12 @@
|
|
|
8
8
|
</linearGradient>
|
|
9
9
|
</defs>
|
|
10
10
|
<style>
|
|
11
|
-
.small { font:
|
|
12
|
-
.heavy { font: bold
|
|
11
|
+
.small { font: 18px sans-serif; fill: #98baff }
|
|
12
|
+
.heavy { font: bold 52px sans-serif; fill: #76a9ff }
|
|
13
13
|
</style>
|
|
14
14
|
|
|
15
15
|
<rect x="20" y="20" rx="15" ry="15" width="98%" height="100" fill="url(#grad1)"/>
|
|
16
16
|
|
|
17
|
-
<text x="
|
|
18
|
-
<text x="
|
|
17
|
+
<text x="45" y="70" class=heavy>$blog</text>
|
|
18
|
+
<text x="45" y="98" class=small>$blog.desc</text>
|
|
19
19
|
</svg>
|
data/lib/runeblog.rb
CHANGED
|
@@ -389,13 +389,11 @@ class RuneBlog
|
|
|
389
389
|
end
|
|
390
390
|
else
|
|
391
391
|
text << <<-HTML
|
|
392
|
-
<svg width="95%" height="
|
|
393
|
-
<style> .huge { font: italic
|
|
392
|
+
<svg width="95%" height="75%" viewBox="0 0 95% 95%">
|
|
393
|
+
<style> .huge { font: italic 90px sans-serif; fill: white } </style>
|
|
394
394
|
<rect x="0" y="0" rx="50" ry="50" width="95%" height="95%" fill="lightblue"/>
|
|
395
|
-
<text x="
|
|
396
|
-
<text x="
|
|
397
|
-
<text x="250" y="340" class=huge>here</text>
|
|
398
|
-
<text x="250" y="450" class=huge>yet</text>
|
|
395
|
+
<text x="120" y="250" class=huge>No posts</text>
|
|
396
|
+
<text x="120" y="350" class=huge>here yet</text>
|
|
399
397
|
</svg>
|
|
400
398
|
HTML
|
|
401
399
|
end
|
data/lib/runeblog_version.rb
CHANGED