Skip to content

Commit 876ac3c

Browse files
author
brave447
committed
修改背景图和摘要大小
1 parent 8f3db87 commit 876ac3c

File tree

4 files changed

+38
-0
lines changed

4 files changed

+38
-0
lines changed

content/_index.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
title: "Ananke: a Hugo Theme"
3+
4+
description: "The last theme you'll ever need. Maybe."
5+
# 1. To ensure Netlify triggers a build on our exampleSite instance, we need to change a file in the exampleSite directory.
6+
theme_version: '2.8.2'
7+
cascade:
8+
featured_image: '/images/gohugo-default-sample-hero-image.jpg'
9+
---
10+
Welcome to my blog with some of my work in progress. I've been working on this book idea. You can read some of the chapters below.

content/post/_index.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
title: "Articles"
3+
date: 2017-03-02T12:00:00-05:00
4+
---
5+
Articles are paginated with only three posts here for example. You can set the number of entries to show on this page with the "pagination" setting in the config file.

content/posts/my-first-post.md renamed to content/post/my-first-post.md

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
title = '使用Hugo+Github Actions创建Github Pages'
33
date = 2024-07-29T19:09:57+08:00
44
draft = false
5+
show_reading_time = true
56
+++
67

78
## 简介

hugo.toml

+22
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,25 @@ baseURL = 'https://brave447.github.io/'
22
languageCode = 'zh-cn'
33
title = 'Brave447 Blog'
44
theme = 'ananke'
5+
resourceDir = "../resources"
6+
hasCJKLanguage = true
7+
8+
SectionPagesMenu = "main"
9+
Paginate = 10 # this is set low for demonstrating with dummy content. Set to a higher number
10+
googleAnalytics = ""
11+
enableRobotsTXT = true
12+
13+
[sitemap]
14+
changefreq = "monthly"
15+
priority = 0.5
16+
filename = "sitemap.xml"
17+
18+
[params]
19+
text_color = ""
20+
author = ""
21+
favicon = ""
22+
site_logo = ""
23+
description = "The last theme you'll ever need. Maybe."
24+
# choose a background color from any on this page: https://tachyons.io/docs/themes/skins/ and preface it with "bg-"
25+
background_color_class = "bg-black"
26+
recent_posts_number = 3

0 commit comments

Comments
 (0)