-
Notifications
You must be signed in to change notification settings - Fork 259
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Redirect /product to /products (#664)
* add a new products.html page * add redirect from /product to /products * update link from /product to /products in navbar * update link from /product to /products in sitemap.txt
- Loading branch information
1 parent
4e9047c
commit e530004
Showing
4 changed files
with
57 additions
and
45 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
--- | ||
layout: default | ||
title: Products - Sugar Labs | ||
permalink: /products/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_merch.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> |
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