The commitment of this repository is to allow all the Developer Student Clubs to generate a site for their club in less than 3 minutes, performing a few simple steps.
The management of this site does not require any kind of web development and backend competence.
To change the content of the site, go to the content
folder located in the root of the project. In this folder there are several .yaml files in which you can modify the contents.
To modify the metadata (title, meta description, ...) in the site Metadata field of ./gatbsy-config.js
- name: John Doe
role: Mentor
img: images/teams/avatar.png
descs:
- Mobile and Web developer
- Open source enthusiast
- Community mentor
social:
twitter: https://www.example.com
github: https://www.example.com
linkedin: https://www.example.com
name | usage |
---|---|
title | Value of site <title> tag |
description | Meta description |
header | Website header |
lang | Lang property |
register | Link for the "become a member" button. |
Used in footer | |
social | Social links used in footer |
Please note that the both the mail
and the register
fields are optional (if undefined, they won't be shown on the website)
To install you first need node.js on your machine. NodeJS >= 8.x
# Clone the repo
git clone https://github.com/andreabac3/dsc-website-template.git
cd dsc-website-template
# Install the gatbsy CLI
npm install gatsby-cli -g
# Install local dependencies
npm install
npm run deploy
gatsby develop --host 0.0.0.0
(for twitter, youtube, github, linkedin, you only need step 1)
Let's say I want to add the telegram.org
as telegram link in the John Doe card.
Step 0: Check here if the icon is present
Step 1: Add a telegram: telegram.org
entry in the John Doe social yaml field
Step 2: Add the following export in ./src/icons.js
:
faTelegram as telegram
Step 3: In ./src/components/index/Teams.js
, add telegram:
social {
twitter
github
linkedin
telegram
}
(for twitter, youtube, github, linkedin, you only need step 1)
Let's say I want to add the telegram.org
as telegram link in the website footer.
Step 0: Check here if the icon is present
Step 1: Add a telegram: telegram.org
entry in the siteMetadata.social field in ./gatsby-config.js
Step 2: Add the following export in ./src/icons.js
:
faTelegram as telegram
Step 3: In ./src/components/Footer.js
, add telegram:
social {
youtube
github
twitter
telegram
}
- Andrea Bacciu (DSC LEAD - Software Engineer) Github profile
- Alessandro Scandone (Core Team - Frontend developer) - Github profile
This is a refactor of the EKSU DSC website as a gatsby template.