Skip to content

Commit

Permalink
adding themes and refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
EdvinHonda committed Sep 8, 2022
1 parent df9c221 commit 427412b
Show file tree
Hide file tree
Showing 128 changed files with 24,572 additions and 24,138 deletions.
6 changes: 3 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.direnv/
public/
.vscode/
.direnv/
public/
.vscode/
**/.DS_Store
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "themes/hugo-air"]
path = themes/hugo-air
url = https://github.com/syui/hugo-theme-air.git
20 changes: 10 additions & 10 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM yanqd0/hugo as build

EXPOSE 3000

WORKDIR /src

COPY . .

CMD [ "hugo", "server", "watch", "--bind", "0.0.0.0", "-p", "3000"]

FROM yanqd0/hugo as build

EXPOSE 3000

WORKDIR /src

COPY . .

CMD [ "hugo", "server", "watch", "--bind", "0.0.0.0", "-p", "3000"]

30 changes: 15 additions & 15 deletions Dockerfile.prod
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
FROM yanqd0/hugo as build

WORKDIR /src

COPY . .

RUN hugo

FROM nginx

FROM nginx:1.21.6-alpine
COPY --from=build /src/public/ /usr/share/nginx/html

CMD ["nginx", "-g", "daemon off;"]

FROM yanqd0/hugo as build
WORKDIR /src
COPY . .
RUN hugo
FROM nginx
FROM nginx:1.21.6-alpine
COPY --from=build /src/public/ /usr/share/nginx/html
CMD ["nginx", "-g", "daemon off;"]
1,348 changes: 674 additions & 674 deletions LICENSE

Large diffs are not rendered by default.

26 changes: 13 additions & 13 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
NY: nginx


prod:
@docker-compose -f docker-compose-prod.yml up --build

dev:
@docker-compose -f docker-compose.yml up --build

dev-hugo:
@hugo serve --source=./ -D --disableFastRender


NY: nginx


prod:
@docker-compose -f docker-compose-prod.yml up --build

dev:
@docker-compose -f docker-compose.yml up --build

dev-hugo:
@hugo serve --source=./ -D --disableFastRender


6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# SynapsÉTS

Site web du club SynapsÉTS utilisant le thème [Cohub Hugo](https://github.com/StaticMania/hugo-cohub#cohub-hugo) et [AIR](https://github.com/syui/hugo-theme-air).
# SynapsÉTS

Site web du club SynapsÉTS utilisant le thème [Cohub Hugo](https://github.com/StaticMania/hugo-cohub#cohub-hugo) et [AIR](https://github.com/syui/hugo-theme-air).
176 changes: 88 additions & 88 deletions config.toml
Original file line number Diff line number Diff line change
@@ -1,88 +1,88 @@
baseURL = 'https://synapse.etsmtl.ca'
languageCode = 'en-us'
paginate = 6
theme= "coHub"
title = 'Synapse'

[Menu]
# Main Menu
[[menu.Main]]
name = "Membres"
url= "/membres/"
weight = 4
[[menu.Main]]
name = "Exibhition"
url= "#gallery"
weight = 1
[[menu.Main]]
name = "Feature"
url= "#service"
weight = 2
[[menu.Main]]
name = "Projet"
url= "#projet"
weight = 3
[[menu.Main]]
name = "Pricing"
url= "#pricing"
weight = 5
[[menu.Main]]
name = "FAQ"
url= "#faq"
weight = 6
[[menu.Main]]
name = "Contact"
url= "/contact/"
weight = 7

# Sitemap Menu
[[menu.sitemap]]
name = "Privacy Policy"
url = "/privacy/"
weight = 1
[[menu.sitemap]]
name = "Terms"
url = "/terms/"
weight = 2

[params]
aboutPageURL = "projet"
contactLink = "contact"
copyright = "© {year} <a href=\"https://staticmania.com/\" target=\"_blank\">StaticMania </a>"
fabFormURL = "https://fabform.io/f/u00kv3-"
googleAnalytics = "G-JZ95FEWF9K"
logo = "images/logo.png"
footerlogo = "images/logo.png"
footerDescription = "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Odit quia ab, natus fugiat voluptas saepe ipsum animi officiis in molestiae?"

[params.address]
address = "115 W 18th St. <br> New York, NY 10011"
email = "[email protected]"
openingDesc = "Give us a call or drop by anytime, we endeavour to answer all enquiries within 24 hours on business days."
openingHours = "We are open from 7am — 7pm week days."
phone = "+(448) 833 5272 332"

[params.map]
latitude = "45.4948"
longitude = "73.5623"
pinImage = "images/pin.png"

# Socail icons
[[params.social]]
icon = "ti-facebook"
url = "https://www.facebook.com/"
weight = 1
[[params.social]]
icon = "ti-twitter-alt"
url = "https://twitter.com/"
weight = 2
[[params.social]]
icon = "ti-dribbble"
url = "https://dribbble.com/"
weight = 3
[[params.social]]
icon = "ti-instagram"
url = "https://www.instagram.com/"
weight = 4


#baseURL = 'https://synapse.etsmtl.ca'
languageCode = 'en-us'
paginate = 6
theme= "coHub"
title = 'Synapse'

[Menu]
# Main Menu
[[menu.Main]]
name = "Membres"
url= "/membres/"
weight = 4
[[menu.Main]]
name = "Exibhition"
url= "#gallery"
weight = 1
[[menu.Main]]
name = "Feature"
url= "#service"
weight = 2
[[menu.Main]]
name = "Projet"
url= "#projet"
weight = 3
[[menu.Main]]
name = "Pricing"
url= "#pricing"
weight = 5
[[menu.Main]]
name = "FAQ"
url= "#faq"
weight = 6
[[menu.Main]]
name = "Contact"
url= "/contact/"
weight = 7

# Sitemap Menu
[[menu.sitemap]]
name = "Privacy Policy"
url = "/privacy/"
weight = 1
[[menu.sitemap]]
name = "Terms"
url = "/terms/"
weight = 2

[params]
aboutPageURL = "projet"
contactLink = "contact"
copyright = "© {year} <a href=\"https://staticmania.com/\" target=\"_blank\">StaticMania </a>"
fabFormURL = "https://fabform.io/f/u00kv3-"
googleAnalytics = "G-JZ95FEWF9K"
logo = "images/logo.png"
footerlogo = "images/logo.png"
footerDescription = "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Odit quia ab, natus fugiat voluptas saepe ipsum animi officiis in molestiae?"

[params.address]
address = "115 W 18th St. <br> New York, NY 10011"
email = "[email protected]"
openingDesc = "Give us a call or drop by anytime, we endeavour to answer all enquiries within 24 hours on business days."
openingHours = "We are open from 7am — 7pm week days."
phone = "+(448) 833 5272 332"

[params.map]
latitude = "45.4948"
longitude = "73.5623"
pinImage = "images/pin.png"

# Socail icons
[[params.social]]
icon = "ti-facebook"
url = "https://www.facebook.com/"
weight = 1
[[params.social]]
icon = "ti-twitter-alt"
url = "https://twitter.com/"
weight = 2
[[params.social]]
icon = "ti-dribbble"
url = "https://dribbble.com/"
weight = 3
[[params.social]]
icon = "ti-instagram"
url = "https://www.instagram.com/"
weight = 4


14 changes: 7 additions & 7 deletions content/contact/_index.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: "Contact"
date: 2022-01-08T11:25:11+06:00
subTitle: >
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos accusam et justo duo dolores ea rebum Stet clita.
---

---
title: "Contact"
date: 2022-01-08T11:25:11+06:00
subTitle: >
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos accusam et justo duo dolores ea rebum Stet clita.
---

32 changes: 16 additions & 16 deletions content/membres/_index.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
---
title: "Nos membres"
date: 2022-01-08T10:41:03+06:00
subTitle: >
Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Cras ultricies ligula sed magna dictum porta.
sliderImage:
- image: "images/stor/story-01.jpg"
- image: "images/stor/story-01.jpg"
- image: "images/stor/story-01.jpg"
---
## This Is Our Story.

We’re here for those who refuse to settle. Who never stop moving forwards. Who continue to search for new
ideas and better experiences in everything they do. Because today’s hyper-connected world deserves a
financial partner just as progressive.One that adapts to your needs, gives you control and constantly pushes
you into new exciting spaces.
---
title: "Nos membres"
date: 2022-01-08T10:41:03+06:00
subTitle: >
Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Cras ultricies ligula sed magna dictum porta.
sliderImage:
- image: "images/stor/story-01.jpg"
- image: "images/stor/story-01.jpg"
- image: "images/stor/story-01.jpg"
---
## This Is Our Story.

We’re here for those who refuse to settle. Who never stop moving forwards. Who continue to search for new
ideas and better experiences in everything they do. Because today’s hyper-connected world deserves a
financial partner just as progressive.One that adapts to your needs, gives you control and constantly pushes
you into new exciting spaces.
46 changes: 23 additions & 23 deletions content/privacy/_index.md
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
---
title: "CoHub Privacy & Policy "
date: 2022-01-08T12:51:52+06:00
subtitle: >
Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Cras ultricies ligula sed magna dictum porta.
---
## What is Lorem Ipsum?
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum

## What is Lorem Ipsum?
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum

## What is Lorem Ipsum?
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum

## What is Lorem Ipsum?
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum

## What is Lorem Ipsum?
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum

## What is Lorem Ipsum?
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum
---
title: "CoHub Privacy & Policy "
date: 2022-01-08T12:51:52+06:00
subtitle: >
Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Cras ultricies ligula sed magna dictum porta.
---
## What is Lorem Ipsum?
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum

## What is Lorem Ipsum?
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum

## What is Lorem Ipsum?
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum

## What is Lorem Ipsum?
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum

## What is Lorem Ipsum?
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum

## What is Lorem Ipsum?
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum
Loading

0 comments on commit 427412b

Please sign in to comment.