-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
need to rewrite javascript function but it's created
- Loading branch information
1 parent
413ac84
commit a90d4f3
Showing
6 changed files
with
312 additions
and
17 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,7 @@ | ||
--- | ||
title : "Our member" | ||
layout: "career" | ||
layout: "members" | ||
description: "Here are our members" | ||
|
||
|
||
########### Gallery ########## | ||
gallery: | ||
enable : true | ||
images: | ||
- "images/gallery/gallery-01.png" | ||
- "images/gallery/gallery-02.png" | ||
- "images/gallery/gallery-03.png" | ||
- "images/gallery/gallery-04.png" | ||
|
||
|
||
--- |
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,30 @@ | ||
product: | ||
enable : true | ||
section : "Members" | ||
title : "Here our our members" | ||
content : "We Pretty" | ||
product_item: | ||
- title : "Comeon" | ||
image : "images/product/product-03.jpg" | ||
content : "Our members apply their knowledge to design and build advanced robots, getting hands on experience outside the lecture hall." | ||
project_url : "create" | ||
|
||
- title : "Community" | ||
image : "images/product/product-02.jpg" | ||
content : "We inspire students of all ages to pursue a STEM career through community mentorship. In 2018 - 2019, our team contributed a total of 1,500 hours of community service." | ||
project_url : "community" | ||
|
||
- title : "Competition" | ||
image : "images/product/product-03.jpg" | ||
content : "We participate in intercollegiate robotics competitions, competing against like minded engineering students from all over the country. Currently, we are competitors in the NASA Robotic Mining Competition" | ||
project_url : "https://www.nasa.gov/offices/education/centers/kennedy/technology/nasarmc.html" | ||
|
||
- title : "Competition" | ||
image : "images/product/product-03.jpg" | ||
content : "We participate in intercollegiate robotics competitions, competing against like minded engineering students from all over the country. Currently, we are competitors in the NASA Robotic Mining Competition" | ||
project_url : "https://www.nasa.gov/offices/education/centers/kennedy/technology/nasarmc.html" | ||
|
||
- title : "Competition" | ||
image : "images/product/product-03.jpg" | ||
content : "We participate in intercollegiate robotics competitions, competing against like minded engineering students from all over the country. Currently, we are competitors in the NASA Robotic Mining Competition" | ||
project_url : "https://www.nasa.gov/offices/education/centers/kennedy/technology/nasarmc.html" |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,53 @@ | ||
{{ define "main" }} | ||
|
||
{{ if site.Data.members.product.enable }} | ||
{{ with site.Data.members.product }} | ||
<section class="products" id="products"> | ||
<div class="bg"> | ||
<img src="{{`images/section-bg-2.jpg` | absURL}}" class="img-fluid" alt="section-bg"> | ||
</div> | ||
<div class="left-shape"> | ||
<img src="{{`images/left-shape.png` | absURL}}" class="img-fluid" alt="left-shape"> | ||
</div> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-12"> | ||
<div class="section-title"> | ||
<span>{{.section | markdownify }}</span> | ||
</div> | ||
</div> | ||
<div class="col-md-8"> | ||
<div class="text-block"> | ||
<h2><span class="rev">{{ .title | markdownify }}</span> | ||
</h2> | ||
<p>{{ .content | markdownify }}</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="container-fluid p-0"> | ||
<div class="row m-0"> | ||
<div class="col-lg-10 ml-auto p-0"> | ||
<div class="product-noslider-wrapper"> | ||
{{ range .product_item }} | ||
<div class="product-item"> | ||
<img src="{{ .image | absURL }}" alt="product-image"> | ||
<div class="overlay"> | ||
<div class="content"> | ||
<h5>{{ .title | markdownify }}</h5> | ||
<p>{{ .content | markdownify }}</p> | ||
<a href="{{ .project_url | absURL }}">Learn More</a> | ||
</div> | ||
</div> | ||
</div> | ||
{{ end }} | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
{{ end }} | ||
{{ end }} | ||
|
||
|
||
{{ end }} |