Skip to content

Commit c0cecc5

Browse files
committed
Scorelab Web site Init
1 parent 8ef2849 commit c0cecc5

File tree

415 files changed

+74116
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

415 files changed

+74116
-0
lines changed

CNAME

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
www.scorelab.org
2+
scorelab.org

README.MD

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# SCoRe Group Website
2+
3+
### Requirements
4+
- Ruby Gem and Jekyll
5+
6+
### Instructions for running
7+
- Add your localurl in the _config.yml "url:" part. Example url: http://localhost:4000
8+
- Run the terminal and cd to the project folder and do `$ jekyll serve`

_config.yml

+81
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
### GENERAL SETTINGS ###
2+
3+
# Site settings
4+
title: SCoRe Lab
5+
description: "Write an awesome description for your new site here. You can edit this line in _config.yml. It will appear in your document head meta (for Google search results) and in your feed.xml site description."
6+
analytics: #Google analytics code in the format XX-nnnnnnnn-n
7+
baseurl: "" #important: start with /
8+
url: "http://www.scorelab.org"
9+
10+
# Build settings
11+
markdown: kramdown
12+
permalink: /:categories/:title
13+
excerpt_separator: <!--more--> #use this in posts to define how long the excerpt of the post (that is shown on the Blog page) is
14+
15+
colors: #in hex code if not noted else
16+
primary: "#3B78AF" #"#F70031"
17+
primary_rgb: "59,120,175" #"247,0,49" #rgb of the primary. Needed in some places for the transparency effect.
18+
secondary: "#384452" #"#33004D"
19+
link: "#428bca"
20+
link_hover: "#01b2fe"
21+
footer_heading: "#ffffff"
22+
footer_content: "#bfc9d3"
23+
24+
25+
### CONTACT SETTINGS ###
26+
27+
# Social networks usernames. Many more available: google-plus, flickr, linkedin, etc). Shown in footer.
28+
social:
29+
- title: facebook
30+
url:
31+
- title: twitter
32+
url:
33+
34+
# Postal address (add as many lines as necessary). Shown in footer and on Contact page.
35+
address:
36+
- lines:
37+
- Some Ave, 987,
38+
- 23890, New York,
39+
- United States.
40+
41+
tel: +34 8493-4893
42+
43+
44+
### GENERAL DATA FOR VARIOUS LOCATIONS ###
45+
46+
# Members information. Shown on About page.
47+
members:
48+
- name: Dr. Kasun de Zoysa
49+
position: Senior Lecturer, UCSC
50+
text: BSc(Col), PhLic(Stockholm), PhD(Stockholm)(Senior Lecturer Gr. II)
51+
img: kasun.jpg
52+
social:
53+
- title: envelope #use for email address
54+
url: mailto:[email protected]
55+
- name: Dr. Chamath Keppitiyagama
56+
position: Senior Lecturer, UCSC
57+
text: BSc(Col), MSc(British Columbia), PhD (British Columbia)(Senior Lecturer Gr. I)
58+
img: chamath.jpg
59+
social:
60+
- title: envelope #use for email address
61+
url: mailto:[email protected]
62+
63+
# Clients information. Shown on Home and About pages.
64+
clients:
65+
- name: dribbble
66+
img: client01.png
67+
- name: Code is Poetry
68+
img: client02.png
69+
- name: Vimeo
70+
img: client03.png
71+
- name: VimeoPro
72+
img: client04.png
73+
74+
# Short text about your company. Shown in footer on every page and also separately on Home and Contact page.
75+
about: "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."
76+
77+
# Testimonial content. Shown on Home and About page.
78+
testimonial:
79+
message: "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."
80+
author: Marcel Newman
81+
position: WEB DESIGNER - BLACKTIE.CO

_includes/carousel.html

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<div class="col-lg-10 col-lg-offset-1 centered">
2+
<div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
3+
<!-- Indicators -->
4+
<ol class="carousel-indicators">
5+
{% for img in page.carousel %}
6+
<li data-target="#carousel-example-generic" data-slide-to="{{ forloop.index0 }}"
7+
{% if forloop.index0 == 0 %}
8+
class="active"
9+
{% endif %}>
10+
</li>
11+
{% endfor %}
12+
</ol>
13+
14+
<!-- Wrapper for slides -->
15+
<div class="carousel-inner">
16+
{% for img in page.carousel.first %}
17+
<div class="item active">
18+
<img src="{{ "/assets/img/project/carousel/" | prepend: site.baseurl }}{{ img }}" alt="">
19+
</div>
20+
{% endfor %}
21+
{% for img in page.carousel offset:1 %}
22+
<div class="item">
23+
<img src="{{ "/assets/img/project/carousel/" | prepend: site.baseurl }}{{ img }}" alt="">
24+
</div>
25+
{% endfor %}
26+
</div>
27+
</div> <!--/Carousel -->
28+
</div>

_includes/clients.html

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<div id="cwrap">
2+
<div class="container">
3+
<div class="row centered">
4+
<h3>OUR CLIENTS</h3>
5+
{% for client in site.clients %}
6+
<div class="col-lg-3 col-md-3 col-sm-3">
7+
<img src="{{ "/assets/img/clients/" | prepend: site.baseurl }}{{ client.img }}" class="img-responsive">
8+
</div>
9+
{% endfor %}
10+
</div><! --/row -->
11+
</div><! --/container -->
12+
</div><! --/cwrap -->

0 commit comments

Comments
 (0)