├── index.html
├── _includes
├── footer.html
├── thoughts.html
├── interests.html
├── post-card.html
├── header.html
├── projects.html
├── topic-card.html
├── repo-card.html
└── masthead.html
├── favicon.ico
├── .gitattributes
├── .gitignore
├── Gemfile
├── LICENSE.txt
├── assets
└── styles.scss
├── _posts
└── 2019-01-29-hello-world.md
├── _config.yml
├── _layouts
├── default.html
├── home.html
└── post.html
├── _sass
└── _highlight-syntax.scss
├── README.md
└── _data
├── social_media.yml
└── colors.json
/index.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: home
3 | ---
4 |
--------------------------------------------------------------------------------
/_includes/footer.html:
--------------------------------------------------------------------------------
1 |