-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update site structure, essential files docs
- Loading branch information
1 parent
ff733b5
commit 87df9b3
Showing
7 changed files
with
100 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 14 additions & 9 deletions
23
docs/scss-structure.markdown → docs/script-structure.markdown
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,32 @@ | ||
--- | ||
layout: default | ||
title: SCSS Structure | ||
title: JS Structure | ||
nav_order: 1 | ||
parent: Site Structure | ||
permalink: /site-structure/scss-structure | ||
permalink: /site-structure/script-structure | ||
--- | ||
|
||
# JS Structure | ||
|
||
src/ | ||
static/ | ||
js/ | ||
.../ | ||
app.js | ||
|
||
**app.js** - js entrypoint for your site | ||
|
||
# SCSS Structure | ||
|
||
Bowman's default scss structure is based on Hugo Giraudel's SCSS 7-1 architecture pattern. [Click here](https://sass-guidelin.es/#architecture) to learn more. | ||
|
||
src/ | ||
static/ | ||
scss/ | ||
abstracts/ | ||
base/ | ||
components/ | ||
layouts/ | ||
pages/ | ||
vendors/ | ||
.../ | ||
app.scss | ||
critical.scss | ||
|
||
**app.scss** - css entrypoint for your site | ||
|
||
**critical.scss** - critical css to be inlined for improved page load performance | ||
**critical.scss** - critical css to be inlined for improved page load performance |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,15 +45,9 @@ permalink: /site-structure/ | |
src/ | ||
static/ | ||
docs/ | ||
ejs/ | ||
favicons/ | ||
fonts/ | ||
images/ | ||
img/ | ||
js/ | ||
json/ | ||
scss/ | ||
favicon | ||
|
||