-
Notifications
You must be signed in to change notification settings - Fork 256
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add product page with products * link product page to products section on nav
- Loading branch information
1 parent
0dc4a8d
commit c5eff07
Showing
5 changed files
with
122 additions
and
2 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
--- | ||
layout: default | ||
title: Products - Sugar Labs | ||
permalink: /product/index.html | ||
--- | ||
|
||
<!-- Title section --> | ||
<div class="section-title1"> | ||
<span class="tag tag-regular">Our Products</span> | ||
</div> | ||
|
||
<!-- Products Section --> | ||
<section id="intro"> | ||
<div class="container my-2"> | ||
<div class="border-bottom pb-3 mb-3"> | ||
<div class="product-container"> | ||
<!-- Product Card 1 --> | ||
<div class="product-card"> | ||
<img src="assets\products\sugarlabs mech.jpg" alt="Merch" class="product-image" /> | ||
<div class="product-details"> | ||
<h3 class="product-name">Sugarlabs Merch</h3> | ||
<p class="product-description"> | ||
Sweet merch that supports our unique cause. | ||
</p> | ||
<div class="product-footer"> | ||
<a href="https://www.bonfire.com/store/sugar-labs-merch/" class="explore-btn">Explore More</a> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<!-- Product Card 2 --> | ||
<div class="product-card"> | ||
<img src="assets\products\sugarlabs_USB_drive.jpg" alt="SOAS" class="product-image" /> | ||
<div class="product-details"> | ||
<h3 class="product-name">Sugarlabs USB Flash Drive</h3> | ||
<p class="product-description"> | ||
Easily install Fedora Sugar On A Stick (SOAS) to your device directly from this USB flash drive. | ||
</p> | ||
<div class="product-footer"> | ||
<a href="https://www.usbmemorydirect.com/store/novelty/sugarlabs/" class="explore-btn">Explore More</a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</section> |