Skip to content

Commit 5ced308

Browse files
committed
Initial commit
0 parents  commit 5ced308

File tree

8 files changed

+59
-0
lines changed

8 files changed

+59
-0
lines changed

.github/gh-pages.yml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: github pages
2+
3+
on:
4+
push:
5+
branches:
6+
- master # Set a branch to deploy
7+
8+
jobs:
9+
deploy:
10+
runs-on: ubuntu-18.04
11+
steps:
12+
- uses: actions/checkout@v2
13+
with:
14+
submodules: true # Fetch Hugo themes (true OR recursive)
15+
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
16+
17+
- name: Setup Hugo
18+
uses: peaceiris/actions-hugo@v2
19+
with:
20+
hugo-version: 'latest'
21+
# extended: true
22+
23+
- name: Build
24+
run: hugo --minify
25+
26+
- name: Deploy
27+
uses: peaceiris/actions-gh-pages@v3
28+
with:
29+
github_token: ${{ secrets.GITHUB_TOKEN }}
30+
publish_dir: ./public

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.DS_Store
2+
3+
public

.gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "themes/mini"]
2+
path = themes/mini
3+
url = https://github.com/nodejh/hugo-theme-mini

archetypes/default.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
title: "{{ replace .Name "-" " " | title }}"
3+
date: {{ .Date }}
4+
draft: true
5+
---
6+

config.toml

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
baseURL = "http://example.org/"
2+
languageCode = "fa"
3+
title = "var یا"
4+
theme= "mini"
5+
6+
[params]
7+
bio = " وبلاگی برای جاوااسکریپت و نود ‌جی‌اس"

content/posts/my-first-post.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: "My First Post"
3+
date: 2021-04-27T14:42:17+04:30
4+
draft: false
5+
---
6+
7+
This is my first post with hugo.
8+
9+
Bye!

static/images/avatar.png

16.6 KB
Loading

themes/mini

Submodule mini added at 451a21f

0 commit comments

Comments
 (0)