summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorleiyu3 <s444814187@gmail.com>2025-07-17 13:22:16 -0400
committerleiyu3 <s444814187@gmail.com>2025-07-17 13:22:16 -0400
commit00433bb63d22294fcb9adf94dc9980c28e3cb423 (patch)
treeed09e757db3e7efbc35f9afe38f3e457f83383de
parent6758a1a26de82a6dc3661db880513cba75f01110 (diff)
downloadletsworship-00433bb63d22294fcb9adf94dc9980c28e3cb423.tar.gz
letsworship-00433bb63d22294fcb9adf94dc9980c28e3cb423.zip
added about site and contribution
-rw-r--r--assets/css/custom.css8
-rw-r--r--assets/css/main.css253
-rw-r--r--content/_index.md11
-rw-r--r--layouts/_default/baseof.html1
-rw-r--r--layouts/_default/home.html12
5 files changed, 24 insertions, 261 deletions
diff --git a/assets/css/custom.css b/assets/css/custom.css
index 396235f..abf5151 100644
--- a/assets/css/custom.css
+++ b/assets/css/custom.css
@@ -18,6 +18,10 @@ h6 {
18 transition: color 0.3s ease; 18 transition: color 0.3s ease;
19} 19}
20 20
21.about > h3 {
22 text-align: center;
23}
24
21.header { 25.header {
22 font-size: 2em; 26 font-size: 2em;
23 line-height: 1em; 27 line-height: 1em;
@@ -504,3 +508,7 @@ button#clear-search svg {
504 color: black; 508 color: black;
505 } 509 }
506} 510}
511
512.back-to-top {
513 text-align: center;
514} \ No newline at end of file
diff --git a/assets/css/main.css b/assets/css/main.css
index 7004a13..b552953 100644
--- a/assets/css/main.css
+++ b/assets/css/main.css
@@ -195,44 +195,6 @@ footer a {
195 margin: 0; 195 margin: 0;
196} 196}
197 197
198.line-summary {
199 font-size: small;
200 margin-top: 0.2rem !important;
201 /* font-style: italic; */
202 color: var(--content-secondary);
203}
204
205.list-container {
206 padding-bottom: 3rem;
207}
208
209.pagination {
210 display: flex;
211 align-items: center;
212 margin-top: 1rem;
213 margin-bottom: 0rem;
214 justify-content: center;
215}
216
217.pagination-control {
218 min-width: 3rem;
219 margin-left: 0.5rem;
220 margin-right: 0.5rem;
221 text-align: center;
222 align-items: center;
223}
224
225.page-number {
226 min-width: 3rem;
227 margin-left: 0.5rem;
228 margin-right: 0.5rem;
229 display: flex;
230 align-items: center;
231 justify-content: center;
232 align-items: center;
233 font-weight: bold;
234}
235
236/* Social Icons */ 198/* Social Icons */
237 199
238.social-icons { 200.social-icons {
@@ -286,152 +248,6 @@ footer a {
286 margin-right: 0.3rem; 248 margin-right: 0.3rem;
287} 249}
288 250
289/* Single pagination */
290
291.single-pagination {
292 margin-top: 3rem;
293 margin-bottom: 3rem;
294}
295
296.single-pagination a {
297 margin-left: 0.4rem;
298 margin-right: 0.4rem;
299}
300
301.single-pagination hr {
302 margin: 0;
303}
304
305.single-pagination-text {
306 display: flex;
307 justify-content: center;
308 align-items: center;
309 min-height: 100%;
310}
311
312.single-pagination-prev {
313 min-width: 50%;
314 margin-top: 1rem;
315 margin-bottom: 1rem;
316 text-align: right;
317}
318
319.single-pagination-next {
320 min-width: 50%;
321 margin-top: 1rem;
322 margin-bottom: 1rem;
323 text-align: left;
324}
325
326.single-pagination-container-next {
327 display: flex;
328 min-height: 100%;
329 padding: 0.5rem;
330}
331
332.single-pagination-container-prev {
333 display: flex;
334 min-height: 100%;
335 padding: 0.5rem;
336 float: right;
337}
338
339/* Table of contents */
340
341.toc {
342 font-size: var(--p-font-size);
343 line-height: calc(0.9 * var(--p-line-height));
344 margin-top: var(--toc-margin-top);
345 margin-bottom: var(--toc-margin-bottom);
346}
347
348.toc ul {
349 margin-top: 0.1rem;
350 margin-bottom: 0.1rem;
351}
352
353.toc li {
354 margin-top: 0.1rem;
355 margin-bottom: 0.1rem;
356}
357
358/* Autonumbering */
359
360.autonumber {
361 counter-reset: h2-counter 0;
362}
363
364.autonumber h2 {
365 counter-increment: h2-counter 1;
366 counter-reset: h3-counter 0;
367}
368
369.autonumber h3 {
370 counter-increment: h3-counter 1;
371 counter-reset: h4-counter 0;
372}
373
374.autonumber h4 {
375 counter-increment: h4-counter 1;
376}
377
378.autonumber h2:before {
379 content: counter(h2-counter) "\00a0\00a0";
380}
381
382.autonumber h3:before {
383 content: counter(h2-counter) "." counter(h3-counter) "\00a0\00a0";
384}
385
386.autonumber h4:before {
387 content: counter(h2-counter) "." counter(h3-counter) "." counter(h4-counter)
388 "\00a0\00a0";
389}
390
391/* images */
392
393.dark .img-light {
394 display: none !important;
395}
396
397.light .img-dark {
398 display: none !important;
399}
400
401.img-small div {
402 display: flex;
403 align-items: center;
404 justify-content: center;
405}
406
407.img-small img {
408 scale: 80%;
409}
410
411.img-full div {
412 display: flex;
413 align-items: center;
414 justify-content: center;
415}
416
417.img-full img {
418 width: 100vw !important;
419 max-width: 100vw !important;
420}
421
422.caption-container {
423 display: flex;
424 justify-content: center;
425}
426
427figcaption {
428 color: var(--content-secondary);
429 padding-left: var(--caption-padding);
430 padding-right: var(--caption-padding);
431 font-size: var(--caption-font-size);
432 margin-top: 1rem;
433 margin-bottom: 1rem;
434}
435 251
436/* 404 */ 252/* 404 */
437 253
@@ -450,21 +266,7 @@ figcaption {
450 margin-bottom: 3rem; 266 margin-bottom: 3rem;
451} 267}
452 268
453/* breadcrumbs */ 269/
454
455.breadcrumbs {
456 /* font-family: "Monaspace"; */
457 font-size: 0.8em;
458 margin-bottom: calc(-0.5 * var(--h1-margin-top));
459}
460
461/* Comments */
462
463.giscus {
464 margin-top: 3rem;
465}
466
467/* Back to top */
468 270
469.back-to-top { 271.back-to-top {
470 text-align: center; 272 text-align: center;
@@ -473,56 +275,3 @@ figcaption {
473 margin-bottom: 2rem; 275 margin-bottom: 2rem;
474 /* margin-top: -3rem; */ 276 /* margin-top: -3rem; */
475} 277}
476
477/* Code in paragraphs */
478
479p code {
480 background-color: var(--code-background);
481 border-radius: 3px;
482 padding: 2px;
483}
484
485/* Tables */
486
487table {
488 border-collapse: collapse;
489 margin-top: var(--table-margin-top);
490 margin-bottom: var(--table-margin-bottom);
491 font-size: var(--p-font-size);
492 line-height: var(--p-line-height);
493 color: var(--content-primary);
494}
495
496th,
497td {
498 padding: var(--table-cell-padding);
499 border: 1px solid var(--code-border);
500 text-align: left;
501}
502
503th {
504 background-color: var(--code-background);
505 font-weight: bold;
506}
507
508table code {
509 background-color: var(--code-background);
510 border-radius: 3px;
511 padding: 2px;
512}
513
514/* Quotes */
515
516blockquote {
517 margin: 1.5rem;
518 margin-left: 0;
519 margin-right: 0;
520 border-left: solid 2px;
521 color: var(--content-secondary);
522}
523
524blockquote p {
525 margin-left: 1rem;
526 margin-right: 1rem;
527}
528
diff --git a/content/_index.md b/content/_index.md
index 3a7b010..90d6dc5 100644
--- a/content/_index.md
+++ b/content/_index.md
@@ -5,11 +5,8 @@ pre-chorus: ★
5bridge: ❖ 5bridge: ❖
6--- 6---
7 7
8## About This Site 8### About This Site
9Let’s worship does not own any of the lyrics or chords on this site. 9Let's Worship exists simply to provide an online song book for fellow believers to worship without any distractions. If you enjoy using this site please share it with others. If there is corrections or adjustment you would like to suggest use this [form](https://forms.gle/NcLx2fo25cCE5gpU7). Let’s worship does not own any of the lyrics or chords on this site.
10
11The purpose of the site is simply to make it easier for fellow believers to worship without any distractions(ads, popups). If you enjoy using this site please share it with others. If there is corrections or adjustment you would like to suggest please email s444814187@gmail.com.
12
13## How to Contribute
14If you want to contribute please send a email to s444814187@gmail.com. To increase the chance of the song being added please type out the lyrics with the chord placements like shown here.
15 10
11### How to Contribute
12If you want to contribute please fill in this [form](https://forms.gle/iHQ21jC5JneWk4Ew5). To increase the chance of the song being added please type out the lyrics with the chord placements (shown in the form). We are only taking worship songs. \ No newline at end of file
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index d8fafb6..fa1b3b7 100644
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -23,7 +23,6 @@
23 </header> 23 </header>
24 24
25 <main class="main"> 25 <main class="main">
26
27 {{ block "main" . }}{{ end }} 26 {{ block "main" . }}{{ end }}
28 </main> 27 </main>
29 </div> 28 </div>
diff --git a/layouts/_default/home.html b/layouts/_default/home.html
index 17f4249..52db7eb 100644
--- a/layouts/_default/home.html
+++ b/layouts/_default/home.html
@@ -36,7 +36,7 @@
36</script> 36</script>
37 37
38<div class="list-container"> 38<div class="list-container">
39 {{ .Content }} 39
40 40
41 {{ $tagsPage := eq .Title "Tags"}} 41 {{ $tagsPage := eq .Title "Tags"}}
42 42
@@ -66,6 +66,16 @@
66 </li> 66 </li>
67 {{ end }} 67 {{ end }}
68 </ul> 68 </ul>
69</div>
69 70
71<div class="about">
72 {{ .Content }}
70</div> 73</div>
74
75<div class="back-to-top">
76<a href="#top">
77 back to top
78</a>
79</div>
80
71{{ end }} \ No newline at end of file 81{{ end }} \ No newline at end of file