Created
February 3, 2017 04:26
-
-
Save theanhdo94/26019cc4e155c0f9ff636bd95d0d2d5a to your computer and use it in GitHub Desktop.
Sample standard html structure for VA frontend developers.
This file contains hidden or 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
| <div id="block-unique-name" class="block-common-name"> // Div wrapper of the whole section | |
| <div class="block-name-inner container-if-needed"> // Div inner of the section (on this you can use bootstrap stuff) | |
| <div class="row"> // This "row" holder is necessary if you use *bootstrap* "container" before. | |
| // Content here whatever you like. | |
| </div> | |
| </div> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment