DEV Community

Ryan Mertz
Ryan Mertz

Posted on

Planned structure for link in bio page

RyanMertz3.github.io/

├─ .gitignore
├─ README.md
├─ index.html

├─ pages/
| ├─ home/links
| | ├─ Linkedin
| | ├─ Github
| | ├─ GitLab
| | └─ Drop Down [exercism, treehouse, codeacadamy]
│ ├─ about.html
│ ├─ contact.html
│ └─ blog/
│ ├─ post-1.html
│ └─ post-2.html

├─ assets/
│ ├─ css/
│ │ ├─ main.css
│ │ └─ responsive.css
│ │
│ ├─ images/
│ │ ├─ logo.png
│ │ ├─ banner.jpg
│ │ ├─ profile_picture.jpg
│ │ └─ blog/
│ │ ├─ blog-post-1.jpg
│ │ └─ blog-post-2.jpg
│ │
│ └─ js/
│ └─ main.js

└─ templates/
├─ header.html
└─ footer.html

Top comments (0)