├── layouts
├── robots.txt
├── shortcodes
│ ├── note.html
│ ├── qc.html
│ └── bilibili.html
├── index.html
├── partials
│ ├── widgets
│ │ ├── share.html
│ │ ├── comment.html
│ │ ├── search.html
│ │ ├── reward.html
│ │ ├── copyright.html
│ │ └── statis.html
│ ├── post
│ │ ├── readtime.html
│ │ ├── wordcount.html
│ │ ├── visitors.html
│ │ ├── tags.html
│ │ ├── date.html
│ │ ├── prenext.html
│ │ └── category.html
│ ├── sidebar
│ │ ├── toc.html
│ │ ├── rss.html
│ │ ├── stats.html
│ │ ├── social.html
│ │ ├── author.html
│ │ ├── link.html
│ │ ├── tagcloud.html
│ │ └── state.html
│ ├── post_simple_list.html
│ ├── sub_menu.html
│ ├── footer.html
│ ├── post_list.html
│ ├── pagination.html
│ ├── sidebar.html
│ ├── header.html
│ └── head.html
├── _default
│ ├── _markup
│ │ └── render-link.html
│ ├── list.searchindex.xml
│ ├── baseof.html
│ ├── single.html
│ └── terms.html
├── taxonomy
│ ├── tag.html
│ └── category.html
├── searchindex.xml
├── section
│ └── list.html
├── about
│ └── single.html
├── docs
│ ├── list.html
│ ├── single.html
│ └── baseof.html
└── 404.html
├── exampleSite
├── content
│ ├── en
│ │ ├── _index.md
│ │ ├── post
│ │ │ ├── rich-content.md
│ │ │ ├── emoji-support.md
│ │ │ ├── placeholder-text.md
│ │ │ ├── math-typesetting.md
│ │ │ └── markdown-syntax.md
│ │ └── about
│ │ │ └── index.md
│ └── zh-CN
│ │ ├── _index.md
│ │ ├── post
│ │ ├── rich-content.md
│ │ ├── placeholder-text.md
│ │ ├── emoji-support.md
│ │ ├── math-typesetting.md
│ │ └── markdown-syntax.md
│ │ └── about
│ │ └── index.md
├── config
│ └── _default
│ │ ├── languages.toml
│ │ ├── menu.zh-CN.toml
│ │ ├── menu.en.toml
│ │ ├── params.toml
│ │ ├── params.zh-CN.toml
│ │ ├── config.toml
│ │ └── params.en.toml
├── .gitignore
├── configTaxo.toml
├── LICENSE
└── README.md
├── images
├── tn.png
└── screenshot.png
├── .gitignore
├── static
├── img
│ ├── 404.png
│ ├── avatar.gif
│ ├── avatar.png
│ ├── logo.png
│ ├── ali-pay.png
│ ├── favicon.ico
│ ├── loading.gif
│ ├── placeholder.gif
│ ├── qq_qrcode.png
│ ├── searchicon.png
│ ├── wechat-pay.png
│ ├── apple-touch-icon.png
│ ├── quote-r.svg
│ ├── quote-l.svg
│ ├── cc-zero.svg
│ ├── cc-by.svg
│ ├── cc-by-nd.svg
│ ├── cc-by-nc.svg
│ ├── cc-by-sa.svg
│ ├── cc-by-nc-nd.svg
│ └── cc-by-nc-sa.svg
├── css
│ └── syntax.css
└── js
│ ├── affix.js
│ ├── scrollspy.js
│ └── search.js
├── archetypes
├── about.md
└── default.md
├── theme.toml
├── .travis
└── replace_params_value.sh
├── .github
└── workflows
│ └── sync-2-gitee.yml
├── LICENSE
├── .travis.yml
├── i18n
├── zh-CN.toml
└── en.toml
├── README.md
└── README.en.md
/layouts/robots.txt:
--------------------------------------------------------------------------------
1 | User-agent: *
2 | Disallow:
--------------------------------------------------------------------------------
/exampleSite/content/en/_index.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Home
3 | ---
--------------------------------------------------------------------------------
/exampleSite/content/zh-CN/_index.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Home
3 | ---
--------------------------------------------------------------------------------
/images/tn.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elkan1788/hugo-theme-next/HEAD/images/tn.png
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | public/
2 | exampleSite/config/dev/
3 | .hugo_build.lock
4 | *.exe
5 | .DS_Store
6 |
--------------------------------------------------------------------------------
/layouts/shortcodes/note.html:
--------------------------------------------------------------------------------
1 |
13 | {{ end }}
14 |
15 | {{ if eq .Site.Params.Comment.Module "Utterances" }}
16 |
17 | {{ end }}
18 |
19 | {{ end }}
--------------------------------------------------------------------------------
/layouts/partials/widgets/search.html:
--------------------------------------------------------------------------------
1 |
11 |
--------------------------------------------------------------------------------
/layouts/partials/sidebar/link.html:
--------------------------------------------------------------------------------
1 | {{ if .Site.Params.Links }}
2 |
3 |
4 |
5 | {{ i18n "Link" }}
6 |
7 |
8 | {{ range .Site.Params.Links }}
9 |
10 | {{ .Name }}
11 |
12 | {{ end }}
13 |
14 |
15 | {{ end }}
16 |
--------------------------------------------------------------------------------
/layouts/partials/post/prenext.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | {{ with .NextInSection }}
4 |
5 | {{.Title}}
6 |
7 | {{end}}
8 |
9 |
10 |
11 | {{ with .PrevInSection }}
12 |
13 | {{.Title}}
14 |
15 |
16 | {{end}}
17 |
18 |
--------------------------------------------------------------------------------
/layouts/taxonomy/tag.html:
--------------------------------------------------------------------------------
1 | {{ define "main_class"}}{{ end}}
2 |
3 | {{ define "main_content" }}
4 |
5 |
6 |
{{ .Title }}
7 | {{ i18n "Tag" }}
8 |
9 |
10 | {{ range (.Paginate (.Data.Pages.GroupByDate "2006") 15 ).PageGroups }}
11 |
12 |
{{ .Key }}
13 |
14 | {{ partial "post_simple_list.html" . }}
15 | {{ end }}
16 |
17 | {{ partial "pagination.html" . }}
18 | {{ end }}
--------------------------------------------------------------------------------
/layouts/searchindex.xml:
--------------------------------------------------------------------------------
1 | {{ printf "" | safeHTML }}
2 |
3 | {{range where .Site.RegularPages "Kind" "page"}}
4 |
5 | {{ .Title }}
6 | {{ .Permalink }}
7 |
8 | {{ range .Params.categories }}{{ . }} {{ end }}
9 |
10 |
11 | {{ range .Params.tags }}
12 | {{ . }}
13 | {{ end }}
14 |
15 | {{ .Content | plainify }}
16 |
17 | {{ end }}
18 |
--------------------------------------------------------------------------------
/layouts/taxonomy/category.html:
--------------------------------------------------------------------------------
1 | {{ define "main_class"}}{{ end}}
2 |
3 | {{ define "main_content" }}
4 |
5 |
6 |
{{ .Title }}
7 | {{ i18n "Category" }}
8 |
9 |
10 | {{ range (.Paginate (.Data.Pages.GroupByDate "2006") 15 ).PageGroups }}
11 |
12 |
{{ .Key }}
13 |
14 | {{ partial "post_simple_list.html" . }}
15 | {{ end }}
16 |
17 | {{ partial "pagination.html" . }}
18 | {{ end }}
--------------------------------------------------------------------------------
/theme.toml:
--------------------------------------------------------------------------------
1 | name = "NexT"
2 | license = "MIT"
3 | licenselink = "https://github.com/elkan1788/hugo-theme-next/blob/main/LICENSE"
4 | description = "A personal blog site theme."
5 | homepage = "https://lisenhui.cn"
6 | tags = ["Blog", "Simple", "Dark", "Personal", "Fast", "Theme"]
7 | features = ["some", "awesome", "features"]
8 | min_version = "0.59.1"
9 | demosite = "https://lisenhui.cn"
10 |
11 | [author]
12 | name = "elkan"
13 | homepage = "https://lisenhui.cn"
14 |
15 | [original]
16 | author = "xtfly"
17 | homepage = "http://lanlingzi.cn/"
18 | repo = "https://github.com/xtfly/hugo-theme-next.git"
--------------------------------------------------------------------------------
/layouts/_default/list.searchindex.xml:
--------------------------------------------------------------------------------
1 | {{ printf "" | safeHTML }}
2 |
3 | {{range where .Site.RegularPages "Kind" "page"}}
4 |
5 | {{ .Title }}
6 | {{ .Permalink }}
7 |
8 | {{ range .Params.categories }}{{ . }} {{ end }}
9 |
10 |
11 | {{ range .Params.tags }}
12 | {{ . }}
13 | {{ end }}
14 |
15 | {{ .Content | plainify }}
16 |
17 | {{ end }}
18 |
--------------------------------------------------------------------------------
/layouts/partials/post/category.html:
--------------------------------------------------------------------------------
1 | {{ if isset .Params "categories" }}
2 | {{ if not (eq (len .Params.categories) 0) }}
3 |
4 |
5 | {{ i18n "Category" }}{{ i18n "Colon"}}
6 | {{ range .Params.categories }}
7 |
8 |
9 | {{ . }}
10 |
11 |
12 |
13 | {{ end }}
14 |
15 | {{ end }}
16 | {{ end }}
--------------------------------------------------------------------------------
/layouts/section/list.html:
--------------------------------------------------------------------------------
1 | {{ define "main_class"}}{{ end}}
2 |
3 | {{ define "main_content" }}
4 |
5 |
6 |
7 | {{ i18n "StatsBlogs" (len (where .Site.RegularPages "Section" "post")) | safeHTML }}
8 |
9 | {{ range (.Paginate (.Data.Pages.GroupByDate "2006") 15 ).PageGroups }}
10 |
11 |
{{ .Key }}
12 |
13 | {{ partial "post_simple_list.html" . }}
14 | {{ end }}
15 |
16 | {{ partial "pagination.html" . }}
17 | {{ end }}
--------------------------------------------------------------------------------
/.travis/replace_params_value.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | echo "Start replace the plugin's paramter"
4 |
5 | ## replace the paramter's values
6 | sed -i '
7 | s/Your AddthisPubid/'$AddthisPubid'/g
8 | s/Your BaiduSiteId/'$BaiduSiteId'/g
9 | s/Your CNNZSiteId/'$CNNZSiteId'/g
10 | s/Your DaoVoiceId/'$DaoVoiceId'/g
11 | s/Your GoogleSiteId/'$GoogleSiteId'/g
12 | s/Your LaSiteId/'$LaSiteId'/g
13 | s/Your LCAppId/'$LCAppId'/g
14 | s/Your LCAppKey/'$LCAppKey'/g
15 | s|Your LCServer|'$LCServer'|g
16 | s/Your LiveReId/'$LiveReId'/g
17 | s/Your RevolverMapId/'$RevolverMapId'/g
18 | s|Your WalineSerURL|'$WalineSerURL'|g
19 | ' config/_default/params.toml
20 |
21 | echo "Replace the plugin's paramter is success."
--------------------------------------------------------------------------------
/layouts/partials/sidebar/tagcloud.html:
--------------------------------------------------------------------------------
1 | {{ if .Site.Params.TagsCloud.Enable }}
2 |
3 |
4 |
5 | {{ i18n "TagCloud" }}
6 |
7 |
8 | {{ range (first ($.Site.Params.TagsCloud.Limit) $.Site.Taxonomies.tags.ByCount) }}
9 |
10 | {{ .Name | humanize }}
11 | {{ .Count }}
12 |
13 |
14 | {{ end }}
15 |
16 |
17 | {{ end }}
18 |
--------------------------------------------------------------------------------
/layouts/about/single.html:
--------------------------------------------------------------------------------
1 | {{ define "main_class"}}page-home{{ end}}
2 | {{ define "main_content" }}
3 |
4 |
5 |
12 |
13 | {{ .Content }}
14 |
15 |
16 |
19 |
20 |
21 | {{ end }}
--------------------------------------------------------------------------------
/layouts/partials/post_simple_list.html:
--------------------------------------------------------------------------------
1 | {{ range .Pages }}
2 |
3 |
18 |
19 | {{end}}
--------------------------------------------------------------------------------
/exampleSite/content/zh-CN/post/rich-content.md:
--------------------------------------------------------------------------------
1 | +++
2 | author = "Hugo Authors"
3 | title = "富文本内容测试"
4 | date = "2019-03-10"
5 | description = "A brief description of Hugo Shortcodes"
6 | tags = [
7 | "shortcodes",
8 | "privacy",
9 | ]
10 | +++
11 |
12 | Hugo 上有几个[**内置短码**](https://gohugo.io/content-management/shortcodes/#use-hugos),用于丰富内容,以及[**隐私配置**](https://gohugo.io/about/hugo-and-gdpr/)还有一组简单的短代码,支持各种社交媒体嵌入的静态和非 JS 版本。
13 |
14 |
15 |
16 | ## YouTube 增强隐私短码
17 |
18 | {{/*< youtube ZJthWmvUzzc >*/}}
19 |
20 |
21 |
22 | ---
23 |
24 | ## Twitter 短码
25 |
26 | {{/*< twitter_simple 1085870671291310081 >*/}}
27 |
28 |
29 |
30 | ---
31 |
32 | ## Vimeo 短码
33 |
34 | {{/*< vimeo_simple 48912912 >*/}}
35 |
36 | ---
37 |
38 | ## 哔哩哔哩短码
39 |
40 | {{< bilibili BV1m4411c7ia >}}
--------------------------------------------------------------------------------
/layouts/partials/widgets/reward.html:
--------------------------------------------------------------------------------
1 |
2 |
{{ i18n "RewardTips" }}
3 |
4 | {{ i18n "RewardBtnText" }}
5 |
6 |
7 |
8 |
9 |
{{ i18n "RewardWxPay" }}
10 |
11 |
12 |
13 |
{{ i18n "RewardAliPay" }}
14 |
15 |
16 |
--------------------------------------------------------------------------------
/layouts/docs/list.html:
--------------------------------------------------------------------------------
1 | {{ define "main_class"}}page-home{{ end}}
2 | {{ define "main_content" }}
3 |
4 |
5 |
12 |
13 | {{ .Content }}
14 |
15 |
16 |
21 |
22 |
23 | {{ end }}
--------------------------------------------------------------------------------
/layouts/docs/single.html:
--------------------------------------------------------------------------------
1 | {{ define "main_class"}}page-home{{ end}}
2 | {{ define "main_content" }}
3 |
4 |
5 |
12 |
13 | {{ .Content }}
14 |
15 |
16 |
21 |
22 |
23 | {{ end }}
--------------------------------------------------------------------------------
/exampleSite/content/zh-CN/about/index.md:
--------------------------------------------------------------------------------
1 | +++
2 | title = "关于我"
3 | description = "Hugo,世界上最快的网站建设框架"
4 | date = "2019-02-28"
5 | author = "Hugo Authors"
6 | url = "about.html"
7 | type = "about"
8 | +++
9 |
10 | Hugo是用Go编写的一个开放源代码静态站点生成器,可在[Apache许可证2.0](https://github.com/gohugoio/hugo/blob/master/LICENSE)下使用。 Hugo支持TOML, YAML和JSON数据文件类型,Markdown和HTML内容文件,并使用短代码添加丰富的内容。其他值得注意的功能包括分类法、多语言模式、图像处理、自定义输出格式、HTML/CSS/JS缩小和对Sass SCSS工作流的支持。
11 |
12 | Hugo使用了多种开源项目,包括:
13 |
14 | * https://github.com/yuin/goldmark
15 | * https://github.com/alecthomas/chroma
16 | * https://github.com/muesli/smartcrop
17 | * https://github.com/spf13/cobra
18 | * https://github.com/spf13/viper
19 |
20 | Hugo是博客、企业网站、创意作品集、在线杂志、单页应用程序甚至是数千页的网站的理想选择。
21 |
22 | Hugo适合那些想要手工编写自己的网站代码,而不用担心设置复杂的运行时、依赖关系和数据库的人。
23 |
24 | 使用Hugo建立的网站非常快速、安全,可以部署在任何地方,包括AWS、GitHub Pages、Heroku、Netlify和任何其他托管提供商。
25 |
26 | 更多信息请访问[GitHub](https://github.com/gohugoio).
27 |
--------------------------------------------------------------------------------
/static/img/quote-r.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
8 |
12 |
13 |
--------------------------------------------------------------------------------
/.github/workflows/sync-2-gitee.yml:
--------------------------------------------------------------------------------
1 | name: sync-2-gitee
2 |
3 | on:
4 | push:
5 | branches: [main, gh-pg]
6 |
7 | jobs:
8 | sync-2-gitee:
9 | runs-on: ubuntu-latest
10 | steps:
11 | - name: Sync to Gitee
12 | uses: wearerequired/git-mirror-action@master
13 | env:
14 | SSH_PRIVATE_KEY: ${{ secrets.GITEE_RSA_PRIVATE_KEY }}
15 | with:
16 | source-repo: git@github.com:elkan1788/hugo-theme-next.git
17 | destination-repo: git@gitee.com:lisenhui/hugo-theme-next.git
18 |
19 | reload-pages:
20 | needs: sync-2-gitee
21 | runs-on: ubuntu-latest
22 | steps:
23 | - name: Build Gitee Pages by GitAction
24 | uses: yanglbme/gitee-pages-action@main
25 | with:
26 | gitee-username: elkan1788@139.com
27 | gitee-password: ${{ secrets.GITEE_PASSWORD }}
28 | gitee-repo: lisenhui/hugo-theme-next
29 | branch: gh-pg
--------------------------------------------------------------------------------
/exampleSite/config/_default/params.toml:
--------------------------------------------------------------------------------
1 | [TagsCloud]
2 | Enable = true
3 | Limit = 10
4 |
5 | [Share]
6 | Enable = true
7 | AddthisId = "Your AddthisId"
8 |
9 | [Comment]
10 | Enable = true
11 | Module = "Waline"
12 | LiveReId = "Your LiveReId"
13 | WalineSerURL = "Your WalineSerURL"
14 |
15 | # If Module is "Utterances",see https://utteranc.es/
16 | UtterancesRepo = "owner/repo"
17 | UtterancesTheme = "github-light"
18 | UtterancesTitle = "pathname"
19 |
20 | [LeanCloud]
21 | AppId = "Your LCAppId"
22 | AppKey = "Your LCAppKey"
23 | ServerURL = "Your LCServer"
24 |
25 | [Statis]
26 | BusuanziCounter = true
27 | # CNNZSiteId = "Your CNNZSiteId"
28 | # BaiduSiteId = "Your BaiduSiteId"
29 | # GoogleSiteId = "Your GoogleSiteId"
30 | # LaSiteId = "Your LaSiteId"
31 |
32 | [OnlineIM]
33 | Enable = false
34 | # DaoVoiceId = "Your DaoVoiceId"
35 |
36 | [Others]
37 | # RevolverMapId = "Your RevolverMapId"
--------------------------------------------------------------------------------
/static/img/quote-l.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
8 |
13 |
14 |
--------------------------------------------------------------------------------
/exampleSite/content/en/post/rich-content.md:
--------------------------------------------------------------------------------
1 | +++
2 | author = "Hugo Authors"
3 | title = "Rich Content"
4 | date = "2019-03-10"
5 | description = "A brief description of Hugo Shortcodes"
6 | tags = [
7 | "shortcodes",
8 | "privacy",
9 | ]
10 | +++
11 |
12 | Hugo ships with several [Built-in Shortcodes](https://gohugo.io/content-management/shortcodes/#use-hugos-built-in-shortcodes) for rich content, along with a [Privacy Config](https://gohugo.io/about/hugo-and-gdpr/) and a set of Simple Shortcodes that enable static and no-JS versions of various social media embeds.
13 |
14 | ---
15 |
16 | ## YouTube Privacy Enhanced Shortcode
17 |
18 | {{/*< youtube ZJthWmvUzzc >*/}}
19 |
20 |
21 |
22 | ---
23 |
24 | ## Twitter Simple Shortcode
25 |
26 | {{/*< twitter_simple 1085870671291310081 >*/}}
27 |
28 |
29 |
30 | ---
31 |
32 | ## Vimeo Simple Shortcode
33 |
34 | {{/*< vimeo_simple 48912912 >*/}}
35 |
36 | ---
37 |
38 | ## Bilibili Shortcode
39 |
40 | {{< bilibili BV1m4411c7ia >}}
41 |
--------------------------------------------------------------------------------
/layouts/partials/widgets/copyright.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
{{ i18n "ScanQQCode" }}
6 |
7 |
8 |
9 | {{ i18n "ArticleTitle" }}: {{ .Page.Title }}
10 |
11 |
12 | {{ i18n "ArticleLink" }}: {{ .Page.Permalink }}
13 |
14 |
15 | {{ i18n "ArticleAuthor" }}: {{ .Site.Params.AuthorName }}
16 |
17 | {{ $declContent := .Site.Params.ArticleDeclContent }}
18 | {{ if not $declContent }}
19 | {{ $declContent = i18n "ArticleDeclContent" }}
20 | {{ end }}
21 |
22 | {{ i18n "ArticleDeclaration" }}: {{ $declContent | safeHTML }}
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/layouts/partials/sub_menu.html:
--------------------------------------------------------------------------------
1 |
15 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2016 xtfly
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/exampleSite/LICENSE:
--------------------------------------------------------------------------------
1 | The MIT License (MIT)
2 |
3 | Copyright (c) 2014 Steve Francia
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
--------------------------------------------------------------------------------
/layouts/_default/baseof.html:
--------------------------------------------------------------------------------
1 | {{ partial "head.html" . }}
2 |
3 |
32 |
33 | {{ partial "script.html" .}}
34 |
35 |