roclin-grp / roclin-grp.github.io

Company Site with GitHub Pages
0 stars 0 forks source link

Default Layout #14

Closed loljoho closed 7 years ago

loljoho commented 7 years ago

Layouts (_layouts/)

├── _layouts/                           --> Layouts
│   ├── default.html                    --> Default Page
│   ├── post.html                       --> Blog Post
│   ├── landing.html                    --> Landing Page
│   └── product.html                    --> Product Page

Partials (_includes/)

├── _includes                           --> Partials
│   │
│   ├── head/                           --> Contents of `<head>` 
│   │   ├── top.html                    --> Topmost Markup
│   │   ├── meta.html                   --> Metadata Tags
│   │   ├── social.html                 --> Social Media Tags
│   │   ├── assets.html                 --> External Assets
│   │   └── custom.html                 --> Custom Code
│   │
│   ├── body/                           --> Contents of `<body>`
│   │   ├── browsehappy.html            --> Browsehappy Element
│   │   ├── scripts.html                --> External JavaScript
│   │   └── analytics.html              --> Google Analytics Code
│   │
│   ├── layout/                         --> Layout Elements
│   │   ├── navigation.html             --> Navbar
│   │   ├── header.html                 --> Header
│   │   └── footer.html                 --> Footer
│   │
│   ├── svg/
│   │   ├── facebook.svg 
│   │   ├── twitter.svg
│   │   ├── email.svg
│   │   └── brand.svg
│   │
│   ├── head.html                       --> Include `<head>` partials
│   ├── body.html                       --> Include `<body>` top partials
│   ├── foot.html                       --> Include `<body>` bottom partials
│   ├── vars.html                       --> Variables
│   └── debug.html                      --> Debug Code

Default Layout


Task List