Skip to content

Commit 6d5e80d

Browse files
committedApr 4, 2019
Updated pages and profile
1 parent 59e4e39 commit 6d5e80d

20 files changed

+106
-51
lines changed
 

‎_config.yml

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
11
# -----------------------------------------------------------------------------
22
# Site settings
33
# -----------------------------------------------------------------------------
4-
name: Your Name
5-
email: you@example.com
4+
name: SCG
5+
email: scg@scg.skku.ac.kr
66
description: > # this means to ignore newlines until "url:"
77
A simple, whitespace theme for academics. Based on [*folio](https://github.com/bogoli/-folio) design.
88
footer_text: >
99
Powered by <a href="http://jekyllrb.com/" target="_blank">Jekyll</a> with <a href="https://github.com/alshedivat/al-folio">al-folio</a> theme.
1010
Hosted by <a href="https://pages.github.com/" target="_blank">GitHub Pages</a>.
11-
Photos from <a href="https://unsplash.com" target="_blank">Unsplash</a>.
1211
1312
url: # the base hostname & protocol for your site
14-
baseurl: /al-folio # the subpath of your site, e.g. /blog/
13+
baseurl: /scg-folio # the subpath of your site, e.g. /blog/
1514
last_updated: # leave blank if you don't want to display last updated
1615

1716
# -----------------------------------------------------------------------------
@@ -66,6 +65,9 @@ collections:
6665
projects:
6766
output: true
6867
permalink: /projects/:path/
68+
people:
69+
output: true
70+
permalink: /people/:path/
6971

7072
news_limit: 5
7173

‎_includes/header.html

+6-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
{% if page.layout != "about" %}
66
<span class="site-title">
77
{% assign name = site.name | split: ' ' %}
8-
<strong>{{ name | first }}</strong> {{ name | last }}
8+
<strong>{{ name }}</strong>
99
</span>
1010
{% endif %}
1111

@@ -23,15 +23,17 @@
2323

2424
<div class="trigger">
2525
<!-- About -->
26-
<a class="page-link" href="{{ site.baseurl | prepend: site.url }}/">about</a>
26+
<a class="page-link" href="{{ site.baseurl | prepend: site.url }}/">About</a>
2727

2828
<!-- Blog -->
29-
<a class="page-link" href="{{ '/blog/' | prepend: site.baseurl | prepend: site.url }}">blog</a>
29+
<!-- <a class="page-link" href="{{ '/blog/' | prepend: site.baseurl | prepend: site.url }}">blog</a> -->
3030

3131
<!-- Pages -->
3232
{% for page in site.pages %}
3333
{% if page.title and page.url != "/" %}
34-
<a class="page-link" href="{{ page.url | prepend: site.baseurl | prepend: site.url }}">{{ page.title }}</a>
34+
<a class="page-link" href="{{ page.url | prepend: site.baseurl | prepend: site.url }}">
35+
{{ page.title | capitalize }}
36+
</a>
3537
{% endif %}
3638
{% endfor %}
3739

‎_layouts/about.html

+4-3
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,12 @@
22
layout: page
33
---
44

5+
{{ content }}
6+
57
{% if page.profile %}
6-
<div class="profile col one {{ page.profile.align }}">
8+
<div class="profile col {{ page.profile.align }}">
79
{% if page.profile.image %}
8-
<img class="one" src="{{ page.profile.image | prepend: '/assets/img/' | prepend: site.baseurl | prepend: site.url }}">
10+
<img src="{{ page.profile.image | prepend: '/assets/img/' | prepend: site.baseurl | prepend: site.url }}">
911
{% endif %}
1012
{% if page.profile.address %}
1113
<div class="address">
@@ -15,4 +17,3 @@
1517
</div>
1618
{% endif %}
1719

18-
{{ content }}

‎_layouts/page.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<div class="post">
55

66
<header class="post-header">
7-
<h1 class="post-title">{{ page.title }}</h1>
7+
<h1 class="post-title">{{ page.title | capitalize }}</h1>
88
<h5 class="post-description">{{ page.description }}</h5>
99
</header>
1010

‎_layouts/profile.html

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
layout: page
3+
---
4+
5+
{% if page.profile %}
6+
<div class="profile col one">
7+
{% if page.profile.image %}
8+
<img class="one" src="{{ page.profile.image | prepend: '/assets/img/' | prepend: site.baseurl | prepend: site.url }}">
9+
{% endif %}
10+
{% if page.profile.address %}
11+
<div class="address">
12+
{{ page.profile.address }}
13+
</div>
14+
{% endif %}
15+
</div>
16+
{% endif %}
17+
18+
{{ content }}
19+

‎_pages/about.md

+6-10
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,15 @@
11
---
22
layout: about
33
permalink: /
4-
title: <strong>Your</strong> Name
5-
description: <a href="">Affiliations</a>. Address. Contacts. Moto. Etc.
4+
title: <strong>System Consultant Group</strong>
5+
description: <a href="https://cs.skku.edu/en">College Of Software,</a> <a href="https://skku.edu">Sungkyunkwan University</a>
66

77
profile:
8-
align: right
9-
image: prof_pic.jpg
10-
address: >
11-
<p>555 your office number</p>
12-
<p>123 your address street</p>
13-
<p>Your City, State 12345</p>
8+
align: bottom
9+
image: main_banner1.jpg
1410

15-
news: true
16-
social: true
11+
news: false
12+
social: false
1713
---
1814

1915
Write your biography here. Tell the world about yourself. Link to your favorite [subreddit](http://reddit.com){:target="\_blank"}. You can put a picture in, too. The code is already in, just name your picture `prof_pic.jpg` and put it in the `img/` folder.

‎_pages/people.md

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
layout: page
3+
title: People
4+
permalink: /people/
5+
description: People of SCG
6+
---
7+
8+
<div>
9+
<ul>
10+
{% for people in site.people %}
11+
<li>
12+
<a href="{{ people.url | prepend: site.baseurl | prepend: site.url }}">{{ people.profile.name }}</a>
13+
</li>
14+
{% endfor %}
15+
</ul>
16+
</div>

‎_pages/projects.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
layout: page
3-
title: projects
3+
title: Projects
44
permalink: /projects/
5-
description: A growing collection of your cool projects.
5+
description: Our projects
66
---
77

88
{% for project in site.projects %}

‎_pages/publications.md

-12
This file was deleted.

‎_pages/teaching.md

-10
This file was deleted.

‎_people/god_hyunsu.md

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
layout: profile
3+
4+
title: God Hhyuuuunsu
5+
description: GodGodGodGod
6+
7+
profile:
8+
name: God Hyunsu
9+
image: profile/godhyunsu.png
10+
---
11+
12+
I am God I am God I am God Write your biography here. Tell the world about yourself. Link to your favorite [subreddit](http://reddit.com){:target="\_blank"}. You can put a picture in, too. The code is already in, just name your picture `prof_pic.jpg` and put it in the `img/` folder.
13+
14+
Put your address / P.O. box / other info right below your picture. You can also disable any these elements by editing `profile` property of the YAML header of your `_pages/about.md`. Edit `_bibliography/papers.bib` and Jekyll will render your [publications page](/al-folio/publications/) automatically.
15+
16+
Link to your social media connections, too. This theme is set up to use [Font Awesome icons](http://fortawesome.github.io/Font-Awesome/){:target="\_blank"} and [Academicons](https://jpswalsh.github.io/academicons/){:target="\_blank"}, like the ones below. Add your Facebook, Twitter, LinkedIn, Google Scholar, or just disable all of them.

‎_people/god_hyunsu_2.md

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
layout: profile
3+
4+
title: God Hhyuuuunsu
5+
description: GodGodGodGod
6+
7+
profile:
8+
name: God Hhyuuuunsu
9+
image: profile/godhyunsu.png
10+
---
11+
12+
I am God I am God I am God Write your biography here. Tell the world about yourself. Link to your favorite [subreddit](http://reddit.com){:target="\_blank"}. You can put a picture in, too. The code is already in, just name your picture `prof_pic.jpg` and put it in the `img/` folder.
13+
14+
Put your address / P.O. box / other info right below your picture. You can also disable any these elements by editing `profile` property of the YAML header of your `_pages/about.md`. Edit `_bibliography/papers.bib` and Jekyll will render your [publications page](/al-folio/publications/) automatically.
15+
16+
Link to your social media connections, too. This theme is set up to use [Font Awesome icons](http://fortawesome.github.io/Font-Awesome/){:target="\_blank"} and [Academicons](https://jpswalsh.github.io/academicons/){:target="\_blank"}, like the ones below. Add your Facebook, Twitter, LinkedIn, Google Scholar, or just disable all of them.

‎_sass/_footer.scss

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ footer {
2525
font-size: $footer-font-size;
2626
font-weight: $footer-font-weight;
2727
padding: $footer-padding;
28-
position: fixed;
29-
left: 0px;
30-
bottom: 0px;
3128
width: 100%;
3229

3330
a { color: #fff; }
3431
a:hover { color: $theme-color; }
32+
.wrapper {
33+
text-align: center;
34+
}
3535
}

‎_sass/_links.scss

+3
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ article a, .news a {
2323
&:hover { color: $theme-color; }
2424
}
2525

26+
li a {
27+
color: $text-color;
28+
}
2629

2730
// a {
2831
// color: $link-color;

‎_sass/_pages.scss

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
.page-content {
22
padding: 100px 0; /* VERTICAL PADDING FOR TITLE ON EVERY PAGE */
3+
min-height: calc(100vh - 235px);
34
}
45
.page-heading {
56
font-size: 20px;
@@ -12,3 +13,7 @@
1213
.center{
1314
text-align: center;
1415
}
16+
17+
.post-title {
18+
text-transform: capitalize;
19+
}

‎_sass/_posts.scss

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
line-height: 1;
1919
margin-bottom: 10px;
2020
margin-top: 0;
21+
font-weight: 500;
2122
// @include media-query($on-laptop) {
2223
// font-size: 36px;
2324
// }

‎_sass/_variables.scss

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ $red: #FF3636 !default;
4141
$red-1: #f95020 !default;
4242
$orange: #F29105 !default;
4343
$orange-1: #ffcc22 !default;
44-
$blue: #2698BA !default;
44+
$blue: #40c4ff !default;
4545
$blue-1: #0076df !default;
4646
$dark-blue: #00369f !default;
4747
$green: #00ab37 !default;
@@ -70,7 +70,7 @@ $darken-2: rgba(#000,.125) !default;
7070
$darken-3: rgba(#000,.25) !default;
7171
$darken-4: rgba(#000,.5) !default;
7272

73-
$theme-color: $purple;
73+
$theme-color: $blue;
7474
$code-color: $dark-gray;
7575
$text-color: $mid-gray;
7676
$background-color: white;

‎assets/img/favicon.ico

1.12 KB
Binary file not shown.

‎assets/img/main_banner1.jpg

5.13 MB
Loading

‎assets/img/profile/godhyunsu.png

388 KB
Loading

0 commit comments

Comments
 (0)
Please sign in to comment.