Skip to content

Commit b11f398

Browse files
Define configuration
1 parent 3e214cb commit b11f398

File tree

8 files changed

+89
-143
lines changed

8 files changed

+89
-143
lines changed

.gitignore

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Vim
2+
*~
3+
*.sw[p_]
4+
5+
# Sublime Text
6+
*.sublime-project
7+
*.sublime-workspace
8+
9+
# Ruby Gem
10+
*.gem
11+
.bundle
12+
Gemfile.lock
13+
**/vendor/bundle
14+
15+
# Node.js and NPM
16+
node_modules
17+
npm-debug.log*
18+
package-lock.json
19+
codekit-config.json
20+
21+
# macOS
22+
.DS_Store
23+
24+
# Jekyll generated files
25+
.jekyll-cache
26+
.jekyll-metadata
27+
.sass-cache
28+
_asset_bundler_cache
29+
_site

Gemfile

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
11
source "https://rubygems.org"
2-
gemspec
2+
3+
gem "github-pages", group: :jekyll_plugins
4+
gem "jekyll-include-cache", group: :jekyll_plugins
5+
6+
gem "webrick", "~> 1.7"

README.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# USR Lab Website
2+
3+
This is Uppsala Social Robotics Group's Website.
4+
5+
## Local Development
6+
Install Jekyll: [Jekyll - Installation](https://jekyllrb.com/docs/installation/)
7+
8+
Fetch and update bundled gems: run `bundle`
9+
10+
Start the website: `bundle exec jekyll serve`

_config.yml

+27-131
Original file line numberDiff line numberDiff line change
@@ -1,155 +1,53 @@
1-
# Welcome to Jekyll!
1+
# Site wide configuration
22
#
33
# This config file is meant for settings that affect your entire site, values
44
# which you are expected to set up once and rarely need to edit after that.
55
# For technical reasons, this file is *NOT* reloaded automatically when you use
66
# `jekyll serve`. If you change this file, please restart the server process.
77

88
# Theme Settings
9-
#
10-
# Review documentation to determine if you should use `theme` or `remote_theme`
11-
# https://mmistakes.github.io/minimal-mistakes/docs/quick-start-guide/#installing-the-theme
12-
13-
# theme : "minimal-mistakes-jekyll"
14-
# remote_theme : "mmistakes/minimal-mistakes"
9+
remote_theme : "mmistakes/minimal-mistakes"
1510
minimal_mistakes_skin : "default" # "air", "aqua", "contrast", "dark", "dirt", "neon", "mint", "plum", "sunrise"
1611

1712
# Site Settings
18-
locale : "en-US"
19-
title : "Site Title"
20-
title_separator : "-"
21-
subtitle : # site tagline that appears below site title in masthead
22-
name : "Your Name"
23-
description : "An amazing website."
24-
url : # the base hostname & protocol for your site e.g. "https://mmistakes.github.io"
25-
baseurl : # the subpath of your site, e.g. "/blog"
26-
repository : # GitHub username/repo-name e.g. "mmistakes/minimal-mistakes"
13+
locale : "en-GB"
14+
title : "Uppsala Social Robotics Lab"
15+
name : "Uppsala Social Robotics Lab"
16+
description : "The website of Uppsala Social Robotics Lab"
17+
url : https://usr-lab.github.io/
18+
repository : usr-lab/usr-lab.github.io
2719
teaser : # path of fallback teaser image, e.g. "/assets/images/500x300.png"
28-
logo : # path of logo image to display in the masthead, e.g. "/assets/images/88x88.png"
29-
masthead_title : # overrides the website title displayed in the masthead, use " " for no title
20+
logo : "/assets/images/logo_wname.png"
21+
masthead_title : " "
3022
# breadcrumbs : false # true, false (default)
3123
words_per_minute : 200
32-
comments:
33-
provider : # false (default), "disqus", "discourse", "facebook", "staticman", "staticman_v2", "utterances", "giscus", "custom"
34-
disqus:
35-
shortname : # https://help.disqus.com/customer/portal/articles/466208-what-s-a-shortname-
36-
discourse:
37-
server : # https://meta.discourse.org/t/embedding-discourse-comments-via-javascript/31963 , e.g.: meta.discourse.org
38-
facebook:
39-
# https://developers.facebook.com/docs/plugins/comments
40-
appid :
41-
num_posts : # 5 (default)
42-
colorscheme : # "light" (default), "dark"
43-
utterances:
44-
theme : # "github-light" (default), "github-dark"
45-
issue_term : # "pathname" (default)
46-
giscus:
47-
repo_id : # Shown during giscus setup at https://giscus.app
48-
category_name : # Full text name of the category
49-
category_id : # Shown during giscus setup at https://giscus.app
50-
discussion_term : # "pathname" (default), "url", "title", "og:title"
51-
reactions_enabled : # '1' for enabled (default), '0' for disabled
52-
theme : # "light" (default), "dark", "dark_dimmed", "transparent_dark", "preferred_color_scheme"
53-
staticman:
54-
branch : # "master"
55-
endpoint : # "https://{your Staticman v3 API}/v3/entry/github/"
56-
reCaptcha:
57-
siteKey :
58-
secret :
5924
atom_feed:
60-
path : # blank (default) uses feed.xml
61-
hide : # true, false (default)
62-
search : # true, false (default)
63-
search_full_content : # true, false (default)
64-
search_provider : # lunr (default), algolia, google
65-
lunr:
66-
search_within_pages : # true, false (default)
67-
algolia:
68-
application_id : # YOUR_APPLICATION_ID
69-
index_name : # YOUR_INDEX_NAME
70-
search_only_api_key : # YOUR_SEARCH_ONLY_API_KEY
71-
powered_by : # true (default), false
72-
google:
73-
search_engine_id : # YOUR_SEARCH_ENGINE_ID
74-
instant_search : # false (default), true
75-
# SEO Related
76-
google_site_verification :
77-
bing_site_verification :
78-
naver_site_verification :
79-
yandex_site_verification :
80-
baidu_site_verification :
25+
hide: true
8126

8227
# Social Sharing
8328
twitter:
84-
username :
85-
facebook:
86-
username :
87-
app_id :
88-
publisher :
89-
og_image : # Open Graph/Twitter default site image
90-
# For specifying social profiles
91-
# - https://developers.google.com/structured-data/customize/social-profiles
29+
username : USR_Lab
9230
social:
93-
type : # Person or Organization (defaults to Person)
31+
type : Organization
9432
name : # If the user or organization name differs from the site's name
95-
links: # An array of links to social media profiles
96-
97-
# Analytics
98-
analytics:
99-
provider : false # false (default), "google", "google-universal", "google-gtag", "custom"
100-
google:
101-
tracking_id :
102-
anonymize_ip : # true, false (default)
103-
33+
links:
34+
- "https://twitter.com/USR_Lab"
35+
- "https://www.youtube.com/@uppsalasocialroboticslab3140"
36+
- "https://github.com/usr-lab"
10437

105-
# Site Author
106-
author:
107-
name : "Your Name"
108-
avatar : # path of avatar image, e.g. "/assets/images/bio-photo.jpg"
109-
bio : "I am an **amazing** person."
110-
location : "Somewhere"
111-
email :
112-
links:
113-
- label: "Email"
114-
icon: "fas fa-fw fa-envelope-square"
115-
# url: "mailto:[email protected]"
116-
- label: "Website"
117-
icon: "fas fa-fw fa-link"
118-
# url: "https://your-website.com"
119-
- label: "Twitter"
120-
icon: "fab fa-fw fa-twitter-square"
121-
# url: "https://twitter.com/"
122-
- label: "Facebook"
123-
icon: "fab fa-fw fa-facebook-square"
124-
# url: "https://facebook.com/"
125-
- label: "GitHub"
126-
icon: "fab fa-fw fa-github"
127-
# url: "https://github.com/"
128-
- label: "Instagram"
129-
icon: "fab fa-fw fa-instagram"
130-
# url: "https://instagram.com/"
13138

13239
# Site Footer
13340
footer:
13441
links:
13542
- label: "Twitter"
136-
icon: "fab fa-fw fa-twitter-square"
137-
# url:
138-
- label: "Facebook"
139-
icon: "fab fa-fw fa-facebook-square"
140-
# url:
43+
icon: "fab fa-fw fa-twitter"
44+
url: "https://twitter.com/USR_Lab"
14145
- label: "GitHub"
14246
icon: "fab fa-fw fa-github"
143-
# url:
144-
- label: "GitLab"
145-
icon: "fab fa-fw fa-gitlab"
146-
# url:
147-
- label: "Bitbucket"
148-
icon: "fab fa-fw fa-bitbucket"
149-
# url:
150-
- label: "Instagram"
151-
icon: "fab fa-fw fa-instagram"
152-
# url:
47+
url: "https://github.com/usr-lab"
48+
- label: "YouTube"
49+
icon: "fab fa-fw fa-youtube"
50+
url: "https://www.youtube.com/@uppsalasocialroboticslab3140"
15351

15452

15553
# Reading Files
@@ -228,15 +126,13 @@ plugins:
228126
- jekyll-paginate
229127
- jekyll-sitemap
230128
- jekyll-gist
231-
- jekyll-feed
232129
- jekyll-include-cache
233130

234131
# mimic GitHub Pages with --safe
235132
whitelist:
236133
- jekyll-paginate
237134
- jekyll-sitemap
238135
- jekyll-gist
239-
- jekyll-feed
240136
- jekyll-include-cache
241137

242138

@@ -282,11 +178,11 @@ defaults:
282178
# _posts
283179
- scope:
284180
path: ""
285-
type: posts
181+
type: pages
286182
values:
287183
layout: single
288-
author_profile: true
289-
read_time: true
184+
author_profile: false
185+
read_time: false
290186
comments: # true
291187
share: true
292-
related: true
188+
related: false

_data/navigation.yml

+17-10
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,19 @@
11
# main links
22
main:
3-
- title: "Quick-Start Guide"
4-
url: https://mmistakes.github.io/minimal-mistakes/docs/quick-start-guide/
5-
# - title: "About"
6-
# url: https://mmistakes.github.io/minimal-mistakes/about/
7-
# - title: "Sample Posts"
8-
# url: /year-archive/
9-
# - title: "Sample Collections"
10-
# url: /collection-archive/
11-
# - title: "Sitemap"
12-
# url: /sitemap/
3+
- title: Research
4+
url: research/
5+
6+
- title: People
7+
url: people/
8+
9+
- title: Publications
10+
url: publications/
11+
12+
- title: Teachings
13+
url: teachings/
14+
15+
- title: Work with us!
16+
url: work_with_us/
17+
18+
- title: Contact
19+
url: contact/

_includes/footer.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
</ul>
1919
</div>
2020

21-
<div class="page__footer-copyright">&copy; {{ site.time | date: '%Y' }} {{ site.name | default: site.title }}. {{ site.data.ui-text[site.locale].powered_by | default: "Powered by" }} <a href="https://jekyllrb.com" rel="nofollow">Jekyll</a> &amp; <a href="https://mademistakes.com/work/minimal-mistakes-jekyll-theme/" rel="nofollow">Minimal Mistakes</a>.</div>
21+
<div class="page__footer-copyright">&copy; {{ site.time | date: '%Y' }} {{ site.name | default: site.title }}.</div>

favicon.ico

37.2 KB
Binary file not shown.

favicon.png

9.28 KB
Loading

0 commit comments

Comments
 (0)