forked from HugoBlox/theme-academic-cv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
commands.txt
26 lines (21 loc) · 967 Bytes
/
commands.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
To build website and view in chrome, while developing:
hugo server
Go to localhost:1313
Create a new publication:
hugo new --kind publication publication/<my-publication>
Then edit content/publication/<my-publication>/index.md
Create a new blog post (or can just copy and paste an old post):
hugo new --kind post post/my-article-name
To update website:
hugo
cd public
git add .
git commit -m "message here"
git push
cd ..
Important docs:
https://sourcethemes.com/academic/docs/get-started/ - get started, some info on menus and dropdown menu here
https://sourcethemes.com/academic/docs/customization/ - custom theme, custom fonts, website icon, override templates, date formatting details
https://themes.gohugo.io/ themes!
https://sourcethemes.com/academic/docs/writing-markdown-latex/ - writing content in markdown/latex, adding images and diagrams, etc
https://sourcethemes.com/academic/docs/deployment/ - info on how to deploy, I did so with GitHub pages