https://github.com/ppcamp/ppcamp.github.io
A portfolio repo
https://github.com/ppcamp/ppcamp.github.io
hugo portfolio tutorials
Last synced: about 1 year ago
JSON representation
A portfolio repo
- Host: GitHub
- URL: https://github.com/ppcamp/ppcamp.github.io
- Owner: ppcamp
- License: gpl-3.0
- Archived: true
- Created: 2020-06-24T19:30:27.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-05-24T15:41:57.000Z (about 4 years ago)
- Last Synced: 2025-03-03T05:43:42.209Z (over 1 year ago)
- Topics: hugo, portfolio, tutorials
- Language: JavaScript
- Homepage:
- Size: 12 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# ppcamp.github.io
This repository contains the hugo code that I use in my portfolio website (my
blog).
## Usefull links
- [Hugo quickstart](https://gohugo.io/getting-started/quick-start/)
- [How to add fontawesome in hugo](https://matze.rocks/posts/fontawesome_in_hugo/)
- [Mermaid graphs](https://mermaid-js.github.io/mermaid/#/flowchart)
- [Adding diagrams to websites](https://codewithhugo.com/mermaid-js-hugo-shortcode/)
- [Create shortcodes hugo](https://gohugo.io/templates/shortcode-templates/)
## Tips
Watch changes:
```bash
hugo server -w -D
```
## Shortcuts
{{}}
graph TD;
A-->B;
A-->C;
B-->D;
C-->D;
{{}}
## Mermaid
```mermaid
flowchart TD
A[Start] --> B{Is it?};
B -->|Yes| C[OK];
C --> D[Rethink];
D --> B;
B ---->|No| E[End];
```