Global parts include
- ✅ Hero section
- ✅ Aside
- ☑️ Navigation
- ☑️ Footer
| const loadContent = { | |
| gistId: '', | |
| gistFile: '', | |
| contentElementId: '', | |
| content: '', | |
| getServerSideProps: async function() { | |
| const response = await fetch(`https://api.github.com/gists/${this.gistId}`); | |
| console.log(response) | |
| return await response.json(); | |
| }, |
_______ _______ ______ _______ _______ _______ _______ ___ _______ _______ _______ | || || _ | | || || || || | | || || | | _ || ___|| | || | ___|| ___|| ||_ _|| | | ___|| _____|| _____| | |_| || |___ | |_||_ | |___ | |___ | | | | | | | |___ | |_____ | |_____ | ___|| ___|| __ || ___|| ___|| _| | | | |___ | ___||_____ ||_____ | | | | |___ | | | || | | |___ | |_ | | | || |___ _____| | _____| | |___| |_______||___| |_||___| |_______||_______| |___| |_______||_______||_______||_______|
_______ _______ ______ _______ _______ _______ _______ ___ _______ _______ _______ | || || _ | | || || || || | | || || | | _ || ___|| | || | ___|| ___|| ||_ _|| | | ___|| _____|| _____| | |_| || |___ | |_||_ | |___ | |___ | | | | | | | |___ | |_____ | |_____ | ___|| ___|| __ || ___|| ___|| _| | | | |___ | ___||_____ ||_____ | | | | |___ | | | || | | |___ | |_ | | | || |___ _____| | _____| | |___| |_______||___| |_||___| |_______||_______| |___| |_______||_______||_______||_______|
| @media screen and (max-width: 600px) { .has-media-on-the-right { display: flex; flex-direction: column; } } |
| var i = 0; | |
| $('.progressBlock').each(function(){ | |
| if(i<6){ | |
| i++; | |
| } |
| <?php if( have_rows('home_sections') ): ?> | |
| <?php while ( have_rows('home_sections') ) : the_row(); ?> | |
| <?php if ( get_row_layout() == 'recent_posts' ) { ?> | |
| <?php include 'components/blocks/cardRow-block.php' ?> | |
| <?php } elseif (get_row_layout() == 'call_out_strip') { ?> | |
| <?php include 'components/blocks/slogan-block.php' ?> |
| .gform_wrapper{ | |
| max-width: 590px !important; | |
| input[type=text], select{ | |
| height: 45px; | |
| font-weight: 400 !important; | |
| } | |
| } | |
| .gform_wrapper .top_label input.medium, .gform_wrapper .top_label select.medium { | |
| width: 100% !important; |
| <div class="block-grid-example"> | |
| <div class="block-grid-example-item"> | |
| <img src="http://placehold.it/350x150"> | |
| </div> | |
| <div class="block-grid-example-item"> | |
| <img src="http://placehold.it/350x150"> | |
| </div> | |
| <div class="block-grid-example-item"> | |
| <img src="http://placehold.it/350x150"> | |
| </div> |
| var i = 0; | |
| $('.picBoxGrid').find('.picBox').each(function () { | |
| if (i < 4) { | |
| i++; | |
| } |