10 changed files with 109 additions and 25 deletions
@ -1,4 +1,4 @@ |
|||
module.exports = { |
|||
"mode": "production", |
|||
"cssUrl": "https://", |
|||
cssUrl: "https://", |
|||
blockName: "template", |
|||
} |
|||
|
|||
@ -1,4 +1,5 @@ |
|||
module.exports = { |
|||
"mode": "development", |
|||
"cssUrl": "https://", |
|||
mode: "development", |
|||
cssUrl: "https://", |
|||
blockName: "template", |
|||
} |
|||
|
|||
@ -1,4 +1,4 @@ |
|||
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js"></script> |
|||
<script src="https://unpkg.com/swiper@8/swiper-bundle.min.js"></script> |
|||
<script src="scripts/page--toolbar.js"></script> |
|||
<script src="scripts/template.min.js"></script> |
|||
<script src="scripts/{{ config.blockName }}.min.js"></script> |
|||
@ -1,13 +0,0 @@ |
|||
<section class="template"> |
|||
<header class="template__header"> |
|||
<h1 class="template__header-heading">Ready!</h1> |
|||
</header> |
|||
|
|||
<div class="template__content"> |
|||
<p> |
|||
Review the `/data` folder with JSON data files.<br> |
|||
Don't change data JSON files - use the data as it is. |
|||
</p> |
|||
<p>Build the layout based on provided data structure.</p> |
|||
</div> |
|||
</section> |
|||
@ -0,0 +1,70 @@ |
|||
<section class="template"> |
|||
|
|||
{{! |
|||
Remove Everything Below: |
|||
}} |
|||
|
|||
<style> |
|||
code { |
|||
background-color: #eee; |
|||
color: #333; |
|||
padding: 1rem 1.5rem; |
|||
border: 2px solid #d8d8d8; |
|||
display: inline-block; |
|||
border-radius: 2px; |
|||
font-size: 14px; |
|||
} |
|||
</style> |
|||
|
|||
<header class="template__header"> |
|||
<h1 class="template__header-heading">Ready!</h1> |
|||
</header> |
|||
|
|||
<div class="template__content"> |
|||
<p> |
|||
Review the `/data` folder with JSON data files.<br> |
|||
Don't change data JSON files - use the data as it is. |
|||
</p> |
|||
<p>Build the layout based on provided data structure.</p> |
|||
|
|||
<br><br> |
|||
<hr> |
|||
|
|||
<h2>Image Example</h2> |
|||
<div> |
|||
<img src="images/demo.jpeg" alt=""> |
|||
<br> |
|||
<code> |
|||
<img src="images/demo.jpeg" alt=""> |
|||
</code> |
|||
</div> |
|||
|
|||
<br><br> |
|||
<hr> |
|||
|
|||
<h2>Available Buttons Styling</h2> |
|||
|
|||
<div> |
|||
<a href="#" class="btn btn--primary">Primary</a> |
|||
<br> |
|||
<code> |
|||
<a href="#" class="btn btn--primary">Primary</a> |
|||
</code> |
|||
</div> |
|||
|
|||
<br> |
|||
|
|||
<div> |
|||
<a href="#" class="btn btn--secondary">Secondary</a> |
|||
<br> |
|||
<code> |
|||
<a href="#" class="btn btn--secondary">Secondary</a> |
|||
</code> |
|||
</div> |
|||
</div> |
|||
|
|||
{{! |
|||
Remove END |
|||
}} |
|||
|
|||
</section> |
|||
Loading…
Reference in new issue