quiet-comic 0.1.0
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 +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +198 -0
- data/_artworks/demo-0.md +7 -0
- data/_artworks/demo-1.md +7 -0
- data/_artworks/demo-2.md +7 -0
- data/_artworks/demo-3.md +7 -0
- data/_artworks/demo-4.md +7 -0
- data/_artworks/demo-5.md +7 -0
- data/_artworks/demo-6.md +7 -0
- data/_artworks/demo-7.md +7 -0
- data/_artworks/demo-8.md +7 -0
- data/_artworks/demo-9.md +7 -0
- data/_artworks/demo.md +7 -0
- data/_includes/collection_feed.xml +80 -0
- data/_includes/comments.html +11 -0
- data/_includes/facebook_javascript_sdk.html +8 -0
- data/_includes/footer.html +50 -0
- data/_includes/google_analytics.html +10 -0
- data/_includes/head.html +23 -0
- data/_includes/header.html +43 -0
- data/_includes/seo.html +147 -0
- data/_layouts/artwork.html +41 -0
- data/_layouts/autopage_collection.html +63 -0
- data/_layouts/default.html +12 -0
- data/_layouts/home.html +22 -0
- data/_layouts/page.html +46 -0
- data/_layouts/post.html +5 -0
- data/_pages/demo-0.md +8 -0
- data/_pages/demo-1.md +7 -0
- data/_pages/demo-2.md +7 -0
- data/_pages/demo-3.md +7 -0
- data/_pages/demo-4.md +7 -0
- data/_pages/demo-5.md +7 -0
- data/_pages/demo-6.md +7 -0
- data/_pages/demo-7.md +7 -0
- data/_pages/demo-8.md +7 -0
- data/_pages/demo-9.md +7 -0
- data/_pages/demo.md +7 -0
- data/_sass/quiet_comic.scss +48 -0
- data/_sass/quiet_comic/base.scss +97 -0
- data/_sass/quiet_comic/components.scss +226 -0
- data/_sass/quiet_comic/grid.scss +420 -0
- data/_sass/quiet_comic/mixins.scss +37 -0
- data/_sass/quiet_comic/syntax_highlighting.scss +136 -0
- data/artworks_feed.xml +6 -0
- data/assets/fonts/GloriaHallelujah.ttf +0 -0
- data/assets/fonts/PermanentMarker.ttf +0 -0
- data/assets/images/artworks/krita.jpg +0 -0
- data/assets/images/da-icon.svg +51 -0
- data/assets/images/fb-icon.svg +1 -0
- data/assets/images/feed-icon.svg +1 -0
- data/assets/images/github-icon.svg +68 -0
- data/assets/images/instagram-icon.svg +1 -0
- data/assets/images/pages/placeholder-page.jpg +0 -0
- data/assets/images/placeholder-brand-image.png +0 -0
- data/assets/images/twitter-icon.svg +1 -0
- data/assets/images/youtube-icon.svg +1 -0
- data/assets/main.scss +6 -0
- data/pages_feed.xml +6 -0
- metadata +229 -0
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
@mixin border-slide-bottom($color, $thickness) {
|
|
2
|
+
|
|
3
|
+
position: relative;
|
|
4
|
+
|
|
5
|
+
&:after {
|
|
6
|
+
content: "";
|
|
7
|
+
position: absolute;
|
|
8
|
+
left: 0;
|
|
9
|
+
bottom: 0;
|
|
10
|
+
|
|
11
|
+
width: 0%;
|
|
12
|
+
border-bottom: $thickness solid $color;
|
|
13
|
+
transition: width 0.4s ease-in-out;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
&:hover::after {
|
|
17
|
+
width: 100%;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
@mixin overlay-on-hover($color) {
|
|
22
|
+
|
|
23
|
+
&:after {
|
|
24
|
+
content: "";
|
|
25
|
+
width: 100%;
|
|
26
|
+
height: 100%;
|
|
27
|
+
background-color: $color;
|
|
28
|
+
border: none;
|
|
29
|
+
transition: opacity 0.4s ease-in-out;
|
|
30
|
+
opacity: 0;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
&:hover::after {
|
|
34
|
+
opacity: 0.7;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
}
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
.highlight code, .highlight pre {
|
|
2
|
+
color:#fdce93;
|
|
3
|
+
background-color:#3f3f3f;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.highlight .hll {
|
|
7
|
+
background-color:#222;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.highlight .err {
|
|
11
|
+
color:#e37170;
|
|
12
|
+
background-color:#3d3535;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.highlight .k {
|
|
16
|
+
color:#f0dfaf;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.highlight .p {
|
|
20
|
+
color:#41706f;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.highlight .cs {
|
|
24
|
+
color:#cd0000;
|
|
25
|
+
font-weight:700;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.highlight .gd {
|
|
29
|
+
color:#cd0000;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.highlight .ge {
|
|
33
|
+
color:#ccc;
|
|
34
|
+
font-style:italic;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.highlight .gr {
|
|
38
|
+
color:red;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.highlight .go {
|
|
42
|
+
color:gray;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.highlight .gs {
|
|
46
|
+
color:#ccc;
|
|
47
|
+
font-weight:700;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.highlight .gu {
|
|
51
|
+
color:purple;
|
|
52
|
+
font-weight:700;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.highlight .gt {
|
|
56
|
+
color:#0040D0;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.highlight .kc {
|
|
60
|
+
color:#dca3a3;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.highlight .kd {
|
|
64
|
+
color:#ffff86;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.highlight .kn {
|
|
68
|
+
color:#dfaf8f;
|
|
69
|
+
font-weight:700;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.highlight .kp {
|
|
73
|
+
color:#cdcf99;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.highlight .kr {
|
|
77
|
+
color:#cdcd00;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.highlight .ni {
|
|
81
|
+
color:#c28182;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.highlight .ne {
|
|
85
|
+
color:#c3bf9f;
|
|
86
|
+
font-weight:700;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.highlight .nn {
|
|
90
|
+
color:#8fbede;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.highlight .vi {
|
|
94
|
+
color:#ffffc7;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.highlight .c,.preview-zenburn .highlight .g,.preview-zenburn .highlight .cm,.preview-zenburn .highlight .cp,.preview-zenburn .highlight .c1 {
|
|
98
|
+
color:#7f9f7f;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.highlight .l,.preview-zenburn .highlight .x,.preview-zenburn .highlight .no,.preview-zenburn .highlight .nd,.preview-zenburn .highlight .nl,.preview-zenburn .highlight .nx,.preview-zenburn .highlight .py,.preview-zenburn .highlight .w {
|
|
102
|
+
color:#ccc;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.highlight .n,.preview-zenburn .highlight .nv,.preview-zenburn .highlight .vg {
|
|
106
|
+
color:#dcdccc;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.highlight .o,.preview-zenburn .highlight .ow {
|
|
110
|
+
color:#f0efd0;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.highlight .gh,.preview-zenburn .highlight .gp {
|
|
114
|
+
color:#dcdccc;
|
|
115
|
+
font-weight:700;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.highlight .gi,.preview-zenburn .highlight .kt {
|
|
119
|
+
color:#00cd00;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.highlight .ld,.preview-zenburn .highlight .s,.preview-zenburn .highlight .sb,.preview-zenburn .highlight .sc,.preview-zenburn .highlight .sd,.preview-zenburn .highlight .s2,.preview-zenburn .highlight .se,.preview-zenburn .highlight .sh,.preview-zenburn .highlight .si,.preview-zenburn .highlight .sx,.preview-zenburn .highlight .sr,.preview-zenburn .highlight .s1,.preview-zenburn .highlight .ss {
|
|
123
|
+
color:#cc9393;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.highlight .m,.preview-zenburn .highlight .mf,.preview-zenburn .highlight .mh,.preview-zenburn .highlight .mi,.preview-zenburn .highlight .mo,.preview-zenburn .highlight .il {
|
|
127
|
+
color:#8cd0d3;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.highlight .na,.preview-zenburn .highlight .nt {
|
|
131
|
+
color:#9ac39f;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.highlight .nb,.preview-zenburn .highlight .nc,.preview-zenburn .highlight .nf,.preview-zenburn .highlight .bp,.preview-zenburn .highlight .vc {
|
|
135
|
+
color:#efef8f;
|
|
136
|
+
}
|
data/artworks_feed.xml
ADDED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
4
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
5
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
6
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
9
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
10
|
+
id="Layer_1"
|
|
11
|
+
style="enable-background:new 0 0 100 100;"
|
|
12
|
+
version="1.1"
|
|
13
|
+
viewBox="0 0 100 100"
|
|
14
|
+
xml:space="preserve"
|
|
15
|
+
inkscape:version="0.91 r13725"
|
|
16
|
+
sodipodi:docname="da-icon.svg"><metadata
|
|
17
|
+
id="metadata4190"><rdf:RDF><cc:Work
|
|
18
|
+
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
|
19
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
|
|
20
|
+
id="defs4188" /><sodipodi:namedview
|
|
21
|
+
pagecolor="#ffffff"
|
|
22
|
+
bordercolor="#666666"
|
|
23
|
+
borderopacity="1"
|
|
24
|
+
objecttolerance="10"
|
|
25
|
+
gridtolerance="10"
|
|
26
|
+
guidetolerance="10"
|
|
27
|
+
inkscape:pageopacity="0"
|
|
28
|
+
inkscape:pageshadow="2"
|
|
29
|
+
inkscape:window-width="1920"
|
|
30
|
+
inkscape:window-height="1056"
|
|
31
|
+
id="namedview4186"
|
|
32
|
+
showgrid="false"
|
|
33
|
+
inkscape:zoom="3.2491557"
|
|
34
|
+
inkscape:cx="94.456857"
|
|
35
|
+
inkscape:cy="4.6338487"
|
|
36
|
+
inkscape:window-x="0"
|
|
37
|
+
inkscape:window-y="24"
|
|
38
|
+
inkscape:window-maximized="1"
|
|
39
|
+
inkscape:current-layer="Layer_1" /><circle
|
|
40
|
+
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
41
|
+
id="path4192"
|
|
42
|
+
cx="50.320766"
|
|
43
|
+
cy="50.602554"
|
|
44
|
+
r="49.243568" /><g
|
|
45
|
+
inkscape:groupmode="layer"
|
|
46
|
+
id="layer1"
|
|
47
|
+
inkscape:label="Layer 1"><path
|
|
48
|
+
d="m 68.877491,31.74352 0,-10.689657 c 0,-0.206896 -0.06896,-0.344826 -0.206896,-0.482757 -0.137931,-0.137931 -0.275863,-0.206897 -0.482759,-0.206897 l -11.655172,0 c -0.275863,0 -0.482759,0.137931 -0.62069,0.344828 l -0.620689,1.103448 -5.310344,8.482758 -1.448277,1.862069 -18.413794,0 c -0.413792,0 -0.689655,0.275863 -0.689655,0.689655 l 0,16.068967 c 0,0.413792 0.275863,0.689655 0.689655,0.689655 l 10.275863,0 0.482759,0.551723 -11.379311,21.37931 c -0.06896,0.06896 -0.06896,0.206897 -0.06896,0.344829 l 0,11.241379 c 0,0.413787 0.27586,0.68965 0.689653,0.68965 l 11.655173,0 c 0.275861,0 0.482757,-0.137926 0.620689,-0.344825 l 6.344828,-11.241377 0.827585,-1.241379 18.620691,0 c 0.413793,0 0.689655,-0.275861 0.689655,-0.689655 l 0,-15.034483 c 0,-0.413793 -0.275862,-0.689655 -0.689655,-0.689655 l -10.275863,0 -0.482758,-0.482759 11.37931,-22 c 0.06896,-0.137931 0.06896,-0.206897 0.06896,-0.344827 z"
|
|
49
|
+
id="path4184"
|
|
50
|
+
inkscape:connector-curvature="0"
|
|
51
|
+
style="fill:#ffffff" /></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" ?><!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'><svg enable-background="new 0 0 512 512" height="512px" id="Layer_1" version="1.1" viewBox="0 0 512 512" width="512px" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><g><path d="M437.017,74.985C390.665,28.629,326.732,0,256,0S121.338,28.629,74.986,74.985C28.634,121.341,0,185.268,0,256 s28.634,134.661,74.986,181.014C121.338,483.368,185.268,512,256,512s134.665-28.632,181.017-74.986 C483.368,390.661,512,326.732,512,256S483.368,121.341,437.017,74.985z"/><path clip-rule="evenodd" d="M275.559,203.692v-20.978c0-10.064,6.664-12.473,11.491-12.473 c4.675,0,29.338,0,29.338,0v-44.795h-40.4c-44.933,0-54.995,33.168-54.995,54.716v23.529h-26.087v31.61V256h26.365 c0,59.393,0,130.695,0,130.695h52.309c0,0,0-72.295,0-130.695h38.693l1.707-20.554l3.12-31.754H275.559z" fill="#FFFFFF" fill-rule="evenodd"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" ?><!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'><svg enable-background="new 0 0 56.693 56.693" height="56.693px" id="Layer_1" version="1.1" viewBox="0 0 56.693 56.693" width="56.693px" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M3.428,31.085c6.19,0,12.009,2.418,16.382,6.816c4.381,4.398,6.793,10.256,6.793,16.492h9.539 c0-18.113-14.676-32.848-32.714-32.848V31.085z M3.443,14.174c22.061,0,40.01,18.047,40.01,40.231h9.539 c0-27.445-22.229-49.77-49.549-49.77V14.174z M16.634,47.741c0,3.648-2.959,6.607-6.607,6.607S3.42,51.39,3.42,47.741 c0-3.65,2.958-6.607,6.606-6.607S16.634,44.091,16.634,47.741z"/></svg>
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
4
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
5
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
6
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
9
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
10
|
+
enable-background="new -1163 1657.697 56.693 56.693"
|
|
11
|
+
height="56.693px"
|
|
12
|
+
id="Layer_1"
|
|
13
|
+
version="1.1"
|
|
14
|
+
viewBox="-1163 1657.697 56.693 56.693"
|
|
15
|
+
width="56.693px"
|
|
16
|
+
xml:space="preserve"
|
|
17
|
+
inkscape:version="0.91 r13725"
|
|
18
|
+
sodipodi:docname="github-icon.svg"><metadata
|
|
19
|
+
id="metadata4315"><rdf:RDF><cc:Work
|
|
20
|
+
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
|
21
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
|
|
22
|
+
id="defs4313" /><sodipodi:namedview
|
|
23
|
+
pagecolor="#ffffff"
|
|
24
|
+
bordercolor="#666666"
|
|
25
|
+
borderopacity="1"
|
|
26
|
+
objecttolerance="10"
|
|
27
|
+
gridtolerance="10"
|
|
28
|
+
guidetolerance="10"
|
|
29
|
+
inkscape:pageopacity="0"
|
|
30
|
+
inkscape:pageshadow="2"
|
|
31
|
+
inkscape:window-width="1920"
|
|
32
|
+
inkscape:window-height="1056"
|
|
33
|
+
id="namedview4311"
|
|
34
|
+
showgrid="false"
|
|
35
|
+
inkscape:zoom="11.774095"
|
|
36
|
+
inkscape:cx="20.36308"
|
|
37
|
+
inkscape:cy="27.607437"
|
|
38
|
+
inkscape:window-x="0"
|
|
39
|
+
inkscape:window-y="24"
|
|
40
|
+
inkscape:window-maximized="1"
|
|
41
|
+
inkscape:current-layer="Layer_1" /><g
|
|
42
|
+
id="g4293"
|
|
43
|
+
transform="matrix(1.1534504,0,0,1.1534504,174.24135,-259.91452)"><path
|
|
44
|
+
d="m -1134.6598,1662.9163 c -13.601,0 -24.63,11.0267 -24.63,24.6299 0,10.8821 7.0573,20.1144 16.8435,23.3713 1.2308,0.2279 1.6829,-0.5345 1.6829,-1.1849 0,-0.587 -0.023,-2.5276 -0.033,-4.5857 -6.8521,1.4901 -8.2979,-2.906 -8.2979,-2.906 -1.1205,-2.8467 -2.7347,-3.6039 -2.7347,-3.6039 -2.2349,-1.5287 0.1685,-1.4972 0.1685,-1.4972 2.473,0.1737 3.7755,2.5385 3.7755,2.5385 2.1967,3.7651 5.7618,2.6765 7.1675,2.0472 0.2211,-1.5917 0.8591,-2.6786 1.5637,-3.2936 -5.4707,-0.6226 -11.2218,-2.7347 -11.2218,-12.1722 0,-2.6888 0.9623,-4.8861 2.538,-6.611 -0.2557,-0.6206 -1.0989,-3.1255 0.2386,-6.5183 0,0 2.0684,-0.6616 6.7747,2.525 1.9648,-0.5458 4.0719,-0.8195 6.165,-0.829 2.093,0.01 4.2017,0.2832 6.17,0.829 4.7012,-3.1866 6.7665,-2.525 6.7665,-2.525 1.3406,3.3928 0.4974,5.8977 0.2417,6.5183 1.5793,1.7249 2.5348,3.9221 2.5348,6.611 0,9.4602 -5.7618,11.5428 -11.2465,12.1527 0.8834,0.7644 1.6704,2.2632 1.6704,4.561 0,3.2955 -0.028,5.9479 -0.028,6.7592 0,0.6556 0.4432,1.4236 1.6915,1.1818 9.7812,-3.2605 16.8296,-12.4896 16.8296,-23.3682 0,-13.6032 -11.0275,-24.6299 -24.6299,-24.6299 z"
|
|
45
|
+
id="path4295"
|
|
46
|
+
inkscape:connector-curvature="0"
|
|
47
|
+
style="clip-rule:evenodd;fill-rule:evenodd" /><path
|
|
48
|
+
d="m -1149.9611,1698.2793 c -0.054,0.1227 -0.2469,0.1593 -0.4222,0.075 -0.1788,-0.08 -0.2788,-0.2473 -0.2211,-0.37 0.053,-0.126 0.2457,-0.161 0.4242,-0.077 0.1789,0.081 0.2809,0.2489 0.2191,0.3716 l 0,0 z m -0.3031,-0.2246"
|
|
49
|
+
id="path4297"
|
|
50
|
+
inkscape:connector-curvature="0" /><path
|
|
51
|
+
d="m -1148.9634,1699.3922 c -0.1174,0.1086 -0.3473,0.058 -0.5031,-0.1139 -0.1613,-0.1718 -0.1912,-0.4016 -0.072,-0.5118 0.1211,-0.1088 0.3438,-0.058 0.505,0.1139 0.1614,0.1737 0.1928,0.4015 0.07,0.5118 l 0,0 z m -0.235,-0.2522"
|
|
52
|
+
id="path4299"
|
|
53
|
+
inkscape:connector-curvature="0" /><path
|
|
54
|
+
d="m -1147.9922,1700.8105 c -0.151,0.1051 -0.3979,0.01 -0.5505,-0.2123 -0.151,-0.2191 -0.151,-0.4819 0,-0.5872 0.1526,-0.1051 0.396,-0.01 0.5505,0.2068 0.1506,0.2228 0.1506,0.4856 0,0.5927 l 0,0 z m 0,0"
|
|
55
|
+
id="path4301"
|
|
56
|
+
inkscape:connector-curvature="0" /><path
|
|
57
|
+
d="m -1146.6619,1702.1812 c -0.1351,0.1489 -0.4227,0.1086 -0.6329,-0.094 -0.2155,-0.1984 -0.2753,-0.4803 -0.1403,-0.6293 0.1371,-0.149 0.4263,-0.1072 0.6381,0.094 0.2139,0.1983 0.2788,0.4819 0.1351,0.6294 l 0,0 z m 0,0"
|
|
58
|
+
id="path4303"
|
|
59
|
+
inkscape:connector-curvature="0" /><path
|
|
60
|
+
d="m -1144.8265,1702.9769 c -0.06,0.1927 -0.3365,0.2804 -0.6154,0.1984 -0.2788,-0.085 -0.4608,-0.3103 -0.4047,-0.5051 0.058,-0.1943 0.3361,-0.2855 0.6169,-0.1979 0.2785,0.084 0.4609,0.3082 0.4032,0.5046 l 0,0 z m 0,0"
|
|
61
|
+
id="path4305"
|
|
62
|
+
inkscape:connector-curvature="0" /><path
|
|
63
|
+
d="m -1142.8107,1703.1243 c 0.01,0.2031 -0.2299,0.3716 -0.5226,0.3752 -0.2944,0.01 -0.533,-0.1577 -0.5361,-0.3577 0,-0.2052 0.2313,-0.3717 0.5258,-0.3768 0.2927,-0.01 0.5329,0.1577 0.5329,0.3593 l 0,0 z m 0,0"
|
|
64
|
+
id="path4307"
|
|
65
|
+
inkscape:connector-curvature="0" /><path
|
|
66
|
+
d="m -1140.9351,1702.8052 c 0.035,0.198 -0.1686,0.4015 -0.4594,0.4557 -0.2859,0.053 -0.5504,-0.07 -0.587,-0.2665 -0.035,-0.2031 0.1716,-0.4066 0.4573,-0.4592 0.2912,-0.051 0.552,0.068 0.5891,0.27 l 0,0 z m 0,0"
|
|
67
|
+
id="path4309"
|
|
68
|
+
inkscape:connector-curvature="0" /></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" ?><!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'><svg enable-background="new 0 0 512 512" height="512px" id="Layer_1" version="1.1" viewBox="0 0 512 512" width="512px" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><g><path d="M437.013,74.985C390.803,28.629,326.729,0,255.998,0c-70.591,0-134.655,28.629-181.01,74.985 C28.634,121.341,0,185.268,0,256s28.634,134.661,74.988,181.014C121.343,483.368,185.407,512,255.998,512 c70.731,0,134.805-28.632,181.015-74.986C483.369,390.661,512,326.732,512,256S483.369,121.341,437.013,74.985z"/><path clip-rule="evenodd" d="M190.512,256c0-36.146,29.343-65.631,65.486-65.631 c36.29,0,65.633,29.484,65.633,65.631c0,36.285-29.343,65.631-65.633,65.631C219.854,321.631,190.512,292.285,190.512,256 L190.512,256z M323.761,127.717H188.386c-33.311,0-60.664,27.213-60.664,60.671v135.371c0,33.306,27.354,60.665,60.664,60.665 h135.375c33.453,0,60.665-27.359,60.665-60.665V188.388C384.426,154.93,357.214,127.717,323.761,127.717L323.761,127.717z M188.386,142.886h135.375c25.092,0,45.499,20.407,45.499,45.502v135.371c0,25.087-20.407,45.496-45.499,45.496H188.386 c-25.092,0-45.498-20.409-45.498-45.496V188.388C142.888,163.293,163.294,142.886,188.386,142.886L188.386,142.886z M337.221,162.021c-7.371,0-13.318,5.952-13.318,13.321c0,7.373,5.947,13.326,13.318,13.326s13.328-5.953,13.328-13.326 C350.549,167.973,344.592,162.021,337.221,162.021L337.221,162.021z M338.781,256c0-45.646-36.992-82.781-82.783-82.781 c-45.641,0-82.778,37.136-82.778,82.781c0,45.786,37.138,82.783,82.778,82.783C301.789,338.783,338.781,301.786,338.781,256 L338.781,256z" fill="#FFFFFF" fill-rule="evenodd"/></g></svg>
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" ?><!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'><svg enable-background="new 0 0 512 512" height="512px" id="Layer_1" version="1.1" viewBox="0 0 512 512" width="512px" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><g><path d="M437.018,74.963C390.661,28.765,326.734,0,256.003,0C185.266,0,121.34,28.765,74.993,74.963 C28.631,121.305,0,185.355,0,256.073c0,70.566,28.631,134.625,74.993,180.959C121.34,483.232,185.266,512,256.003,512 c70.731,0,134.658-28.768,181.015-74.968C483.369,390.698,512,326.64,512,256.073C512,185.355,483.369,121.305,437.018,74.963z"/><path clip-rule="evenodd" d="M386.692,176.285c-9.501,4.114-19.841,6.948-30.756,8.361 c11.192-6.657,19.694-16.863,23.673-29.333c-10.35,6.092-21.972,10.486-34.159,12.894c-9.653-10.339-23.673-16.719-39.269-16.719 c-29.484,0-53.587,23.667-53.587,52.714c0,4.252,0.718,8.222,1.565,12.05c-44.65-2.127-84.202-23.102-110.571-55.129 c-4.533,7.937-7.365,16.866-7.365,26.501c0,18.423,9.638,34.577,23.81,43.932c-8.785-0.141-17.01-2.554-24.234-6.521 c0,0.285,0,0.427,0,0.709c0,6.801,1.277,13.04,3.681,18.988c6.528,16.585,21.411,29.052,39.415,32.596 c-4.686,1.276-9.219,1.98-14.177,1.98c-3.402,0-6.806-0.424-10.072-1.131c6.952,20.975,26.652,36.275,50.048,36.846 c-18.433,14.17-41.395,22.531-66.486,22.531c-4.397,0-8.502-0.287-12.894-0.709c23.81,14.882,52.016,23.667,82.212,23.667 c83.772,0,135.512-57.964,148.972-118.191c2.418-10.766,3.544-21.396,3.544-31.881c0-2.269,0-4.674,0-6.804 C370.391,196.126,379.609,186.771,386.692,176.285L386.692,176.285z" fill="#FFFFFF" fill-rule="evenodd"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" ?><!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'><svg enable-background="new 0 0 512 512" height="512px" id="Layer_1" version="1.1" viewBox="0 0 512 512" width="512px" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><g><path d="M437.013,74.963C390.661,28.765,326.734,0,255.998,0C185.261,0,121.335,28.765,74.983,74.963 C28.636,121.305,0,185.355,0,256.073c0,70.566,28.636,134.625,74.983,180.959C121.335,483.232,185.261,512,255.998,512 c70.736,0,134.663-28.768,181.015-74.968C483.359,390.698,512,326.64,512,256.073C512,185.355,483.359,121.305,437.013,74.963z"/><path clip-rule="evenodd" d="M384.138,201.512c0,0-2.686-18.847-10.491-27.066 c-9.915-10.769-21.118-10.912-26.076-11.624c-36.572-2.69-91.426-2.69-91.426-2.69h-0.293c0,0-54.708,0-91.29,2.69 c-5.235,0.712-16.292,0.855-26.213,11.624c-7.8,8.22-10.486,27.066-10.486,27.066s-2.701,22.107-2.701,43.929v2.837v17.994 c0,22.107,2.701,43.935,2.701,43.935s2.687,18.847,10.486,27.207c9.921,10.91,22.967,10.488,28.919,11.619 c20.836,2.127,88.877,2.837,88.877,2.837s54.854-0.283,91.426-2.837c4.958-0.709,16.161-0.709,26.076-11.619 c7.806-8.36,10.491-27.207,10.491-27.207s2.55-21.827,2.55-43.935v-16.861v-3.97C386.688,223.619,384.138,201.512,384.138,201.512 L384.138,201.512z M299.659,253.098l-70.737,38.115v-58.668V214.69l32.039,17.433L299.659,253.098z" fill="#FFFFFF" fill-rule="evenodd"/></g></svg>
|
data/assets/main.scss
ADDED
data/pages_feed.xml
ADDED
metadata
ADDED
|
@@ -0,0 +1,229 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: quiet-comic
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- tjjjwxzq
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2017-12-01 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: jekyll
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '3.6'
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '3.6'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: jekyll-paginate-v2
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - "~>"
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '1.9'
|
|
34
|
+
type: :runtime
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - "~>"
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '1.9'
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: jekyll-sitemap
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - "~>"
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '1.1'
|
|
48
|
+
type: :runtime
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - "~>"
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '1.1'
|
|
55
|
+
- !ruby/object:Gem::Dependency
|
|
56
|
+
name: jekyll-feed
|
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
|
58
|
+
requirements:
|
|
59
|
+
- - "~>"
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: '0.9'
|
|
62
|
+
type: :runtime
|
|
63
|
+
prerelease: false
|
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
+
requirements:
|
|
66
|
+
- - "~>"
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: '0.9'
|
|
69
|
+
- !ruby/object:Gem::Dependency
|
|
70
|
+
name: jekyll-minimagick
|
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
|
72
|
+
requirements:
|
|
73
|
+
- - "~>"
|
|
74
|
+
- !ruby/object:Gem::Version
|
|
75
|
+
version: '0'
|
|
76
|
+
type: :runtime
|
|
77
|
+
prerelease: false
|
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
79
|
+
requirements:
|
|
80
|
+
- - "~>"
|
|
81
|
+
- !ruby/object:Gem::Version
|
|
82
|
+
version: '0'
|
|
83
|
+
- !ruby/object:Gem::Dependency
|
|
84
|
+
name: jekyll-last-modified-at
|
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
|
86
|
+
requirements:
|
|
87
|
+
- - "~>"
|
|
88
|
+
- !ruby/object:Gem::Version
|
|
89
|
+
version: '1'
|
|
90
|
+
type: :runtime
|
|
91
|
+
prerelease: false
|
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
93
|
+
requirements:
|
|
94
|
+
- - "~>"
|
|
95
|
+
- !ruby/object:Gem::Version
|
|
96
|
+
version: '1'
|
|
97
|
+
- !ruby/object:Gem::Dependency
|
|
98
|
+
name: jemoji
|
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
|
100
|
+
requirements:
|
|
101
|
+
- - "~>"
|
|
102
|
+
- !ruby/object:Gem::Version
|
|
103
|
+
version: '0.8'
|
|
104
|
+
type: :runtime
|
|
105
|
+
prerelease: false
|
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
107
|
+
requirements:
|
|
108
|
+
- - "~>"
|
|
109
|
+
- !ruby/object:Gem::Version
|
|
110
|
+
version: '0.8'
|
|
111
|
+
- !ruby/object:Gem::Dependency
|
|
112
|
+
name: bundler
|
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
|
114
|
+
requirements:
|
|
115
|
+
- - "~>"
|
|
116
|
+
- !ruby/object:Gem::Version
|
|
117
|
+
version: '1.12'
|
|
118
|
+
type: :development
|
|
119
|
+
prerelease: false
|
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
121
|
+
requirements:
|
|
122
|
+
- - "~>"
|
|
123
|
+
- !ruby/object:Gem::Version
|
|
124
|
+
version: '1.12'
|
|
125
|
+
- !ruby/object:Gem::Dependency
|
|
126
|
+
name: rake
|
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
|
128
|
+
requirements:
|
|
129
|
+
- - "~>"
|
|
130
|
+
- !ruby/object:Gem::Version
|
|
131
|
+
version: '10.0'
|
|
132
|
+
type: :development
|
|
133
|
+
prerelease: false
|
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
135
|
+
requirements:
|
|
136
|
+
- - "~>"
|
|
137
|
+
- !ruby/object:Gem::Version
|
|
138
|
+
version: '10.0'
|
|
139
|
+
description:
|
|
140
|
+
email:
|
|
141
|
+
- aquietimmanence@gmail.com
|
|
142
|
+
executables: []
|
|
143
|
+
extensions: []
|
|
144
|
+
extra_rdoc_files: []
|
|
145
|
+
files:
|
|
146
|
+
- LICENSE.txt
|
|
147
|
+
- README.md
|
|
148
|
+
- _artworks/demo-0.md
|
|
149
|
+
- _artworks/demo-1.md
|
|
150
|
+
- _artworks/demo-2.md
|
|
151
|
+
- _artworks/demo-3.md
|
|
152
|
+
- _artworks/demo-4.md
|
|
153
|
+
- _artworks/demo-5.md
|
|
154
|
+
- _artworks/demo-6.md
|
|
155
|
+
- _artworks/demo-7.md
|
|
156
|
+
- _artworks/demo-8.md
|
|
157
|
+
- _artworks/demo-9.md
|
|
158
|
+
- _artworks/demo.md
|
|
159
|
+
- _includes/collection_feed.xml
|
|
160
|
+
- _includes/comments.html
|
|
161
|
+
- _includes/facebook_javascript_sdk.html
|
|
162
|
+
- _includes/footer.html
|
|
163
|
+
- _includes/google_analytics.html
|
|
164
|
+
- _includes/head.html
|
|
165
|
+
- _includes/header.html
|
|
166
|
+
- _includes/seo.html
|
|
167
|
+
- _layouts/artwork.html
|
|
168
|
+
- _layouts/autopage_collection.html
|
|
169
|
+
- _layouts/default.html
|
|
170
|
+
- _layouts/home.html
|
|
171
|
+
- _layouts/page.html
|
|
172
|
+
- _layouts/post.html
|
|
173
|
+
- _pages/demo-0.md
|
|
174
|
+
- _pages/demo-1.md
|
|
175
|
+
- _pages/demo-2.md
|
|
176
|
+
- _pages/demo-3.md
|
|
177
|
+
- _pages/demo-4.md
|
|
178
|
+
- _pages/demo-5.md
|
|
179
|
+
- _pages/demo-6.md
|
|
180
|
+
- _pages/demo-7.md
|
|
181
|
+
- _pages/demo-8.md
|
|
182
|
+
- _pages/demo-9.md
|
|
183
|
+
- _pages/demo.md
|
|
184
|
+
- _sass/quiet_comic.scss
|
|
185
|
+
- _sass/quiet_comic/base.scss
|
|
186
|
+
- _sass/quiet_comic/components.scss
|
|
187
|
+
- _sass/quiet_comic/grid.scss
|
|
188
|
+
- _sass/quiet_comic/mixins.scss
|
|
189
|
+
- _sass/quiet_comic/syntax_highlighting.scss
|
|
190
|
+
- artworks_feed.xml
|
|
191
|
+
- assets/fonts/GloriaHallelujah.ttf
|
|
192
|
+
- assets/fonts/PermanentMarker.ttf
|
|
193
|
+
- assets/images/artworks/krita.jpg
|
|
194
|
+
- assets/images/da-icon.svg
|
|
195
|
+
- assets/images/fb-icon.svg
|
|
196
|
+
- assets/images/feed-icon.svg
|
|
197
|
+
- assets/images/github-icon.svg
|
|
198
|
+
- assets/images/instagram-icon.svg
|
|
199
|
+
- assets/images/pages/placeholder-page.jpg
|
|
200
|
+
- assets/images/placeholder-brand-image.png
|
|
201
|
+
- assets/images/twitter-icon.svg
|
|
202
|
+
- assets/images/youtube-icon.svg
|
|
203
|
+
- assets/main.scss
|
|
204
|
+
- pages_feed.xml
|
|
205
|
+
homepage: https://github.com/tjjjwxzq/quiet-comic
|
|
206
|
+
licenses:
|
|
207
|
+
- MIT
|
|
208
|
+
metadata: {}
|
|
209
|
+
post_install_message:
|
|
210
|
+
rdoc_options: []
|
|
211
|
+
require_paths:
|
|
212
|
+
- lib
|
|
213
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
214
|
+
requirements:
|
|
215
|
+
- - ">="
|
|
216
|
+
- !ruby/object:Gem::Version
|
|
217
|
+
version: '0'
|
|
218
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
219
|
+
requirements:
|
|
220
|
+
- - ">="
|
|
221
|
+
- !ruby/object:Gem::Version
|
|
222
|
+
version: '0'
|
|
223
|
+
requirements: []
|
|
224
|
+
rubyforge_project:
|
|
225
|
+
rubygems_version: 2.6.11
|
|
226
|
+
signing_key:
|
|
227
|
+
specification_version: 4
|
|
228
|
+
summary: A simple webcomic Jekyll theme.
|
|
229
|
+
test_files: []
|