Skip to content

Commit

Permalink
Site updated: 2023-11-07 17:12:30
Browse files Browse the repository at this point in the history
  • Loading branch information
南江 authored and 南江 committed Nov 7, 2023
1 parent 58920ed commit 50aefa0
Show file tree
Hide file tree
Showing 15 changed files with 8,043 additions and 0 deletions.
32 changes: 32 additions & 0 deletions 2023/11/07/hello-world/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
extends includes/layout.pug

block content
#post
if top_img === false
include includes/header/post-info.pug

article#article-container.post-content!=page.content
include includes/post/post-copyright.pug
.tag_share
if (theme.post_meta.post.tags)
.post-meta__tag-list
each item, index in page.tags.data
a(href=url_for(item.path)).post-meta__tags #[=item.name]
include includes/third-party/share/index.pug

if theme.reward.enable && theme.reward.QR_code
!=partial('includes/post/reward', {}, {cache: true})

//- ad
if theme.ad && theme.ad.post
.ads-wrap!=theme.ad.post

if theme.post_pagination
include includes/pagination.pug
if theme.related_post && theme.related_post.enable
!= related_posts(page,site.posts)

if page.comments !== false && theme.comments && theme.comments.use
- var commentsJsLoad = true
!=partial('includes/third-party/comments/index', {}, {cache: true})

8 changes: 8 additions & 0 deletions archives/2023/11/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
extends includes/layout.pug

block content
include ./includes/mixins/article-sort.pug
#archive
.article-sort-title= `${_p('page.articles')} - ${getArchiveLength()}`
+articleSort(page.posts)
include includes/pagination.pug
8 changes: 8 additions & 0 deletions archives/2023/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
extends includes/layout.pug

block content
include ./includes/mixins/article-sort.pug
#archive
.article-sort-title= `${_p('page.articles')} - ${getArchiveLength()}`
+articleSort(page.posts)
include includes/pagination.pug
8 changes: 8 additions & 0 deletions archives/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
extends includes/layout.pug

block content
include ./includes/mixins/article-sort.pug
#archive
.article-sort-title= `${_p('page.articles')} - ${getArchiveLength()}`
+articleSort(page.posts)
include includes/pagination.pug
Loading

0 comments on commit 50aefa0

Please sign in to comment.