An open API service indexing awesome lists of open source software.

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

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];
```