Skip to content

Commit f438ea8

Browse files
committed
Copied from 2023
0 parents  commit f438ea8

File tree

185 files changed

+30483
-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.

185 files changed

+30483
-0
lines changed

.gitignore

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# project
2+
_site
3+
.sass-cache
4+
.vagrant
5+
6+
# general
7+
.DS_Store
8+
Thumbs.db
9+
ehthumbs.db
10+
11+
Gemfile.lock
12+
13+
beautiful-jekyll-theme-*.gem
14+
.idea/
15+
.jekyll-cache

.vscode/settings.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"livePreview.defaultPreviewPath": "/index.html"
3+
}

404.html

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
layout: default
3+
title: 404 - Page not found
4+
permalink: /404.html
5+
---
6+
7+
<div class="text-center">
8+
<h1>Whoops, this page doesn't exist (404 error).</h1>
9+
<h1>Please <a href="https://ohbm.github.io/osr2021/contact/">contact us</a> and let us know about the broken link!</h1>
10+
<br/>
11+
12+
<img src="{{ 'img/undraw_warning_cyit.svg' | relative_url }}" />
13+
</div>

OSR_code_of_conduct.pdf

65.8 KB
Binary file not shown.

README.md

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
## Welcome!
2+
3+
This is the GitHub repository for the OHBM Open Science Room (OSR).
4+
5+
This repository hosts the code for [the OSR2023 website](https://ohbm.github.io/osr2023).
6+
7+
Below we provide basic info and links to more information.
8+
9+
### Who are we?
10+
11+
We are part of the <a href="https://ossig.netlify.com/">Open Science Special Interest Group</a>(OSSIG) of the <a href="https://www.humanbrainmapping.org/i4a/pages/index.cfm?pageid=3267&pageid=1">Organization for Human Brain Mapping</a>.
12+
13+
### What are we doing?
14+
15+
We are organizing, among other events, the Open Science Room at the <a href="https://www.humanbrainmapping.org/i4a/pages/index.cfm?pageid=4114" target="_blank">2023 meeting of the OHBM</a>.
16+
17+
### Get involved
18+
19+
All information is available on <a href="https://ohbm.github.io/osr2023" target="_blank">our website</a>.
20+
21+
### Contact us
22+
23+
Feel free to <a href="https://ohbm.github.io/osr2023/contact/" target="_blank">reach out to us</a>!
24+
25+
26+
---
27+
28+
### Credit
29+
The [OSR website](https://ohbm.github.io/osr2023) was built using the [Beautiful Jekyll](https://deanattali.com/beautiful-jekyll/) theme by [Dean Attali](https://deanattali.com/).
30+
31+
32+
#### Instructions for building website (these must be run prior to uploading onto GH)
33+
Check the speaker/volunteer CSV files are in place (in _data/speakers, _data/volunteers)
34+
Wipe the built directories if they already exist, and re-build:
35+
`rm -r _speakers _volunteers; bundle exec jekyll pagemaster speakers volunteers`
36+
Commit the new directories and push the site. This must be done every time the CSV files are changed.

_config.yml

+295
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,295 @@
1+
# --- General options --- #
2+
3+
# Name of website
4+
title: Home
5+
6+
# Short description of your site
7+
description: Open Science Room 2023
8+
9+
# --- Local development options ---
10+
# If your website is hosted locally rather than on GitHub, then you need to uncomment the next two parameters to set the url and baseurl
11+
# *** If you're not sure what this mean, then leave this section as it is. Only modify the url and baseurl if you know what you're doing!***
12+
13+
# url is the the website domain URL without a trailing slash
14+
#url: "https://OHBM-OSR.com"
15+
16+
# baseurl should be an empty string
17+
#baseurl: ""
18+
19+
# --- Navigation bar options --- #
20+
21+
# List of links in the navigation bar. Strings should match .md filenames
22+
navbar-links:
23+
About Us:
24+
- Formats: "formats"
25+
- Code of Conduct: "osr_coc"
26+
- Accessibility: "access"
27+
- Team: "volunteers"
28+
#- Sponsors: "sponsors"
29+
Program:
30+
#- Self-Nominations: "submit"
31+
- Schedule: "schedule"
32+
#- Schedule: "schedule-PLACEHOLDER"
33+
- Panels: "panel"
34+
- Emergent Sessions: "emergent"
35+
- Table Talks: "tabletalk"
36+
- Symposium: "symposium"
37+
- Educational: "educational"
38+
39+
Register: "register"
40+
Volunteering:
41+
- Opportunities: "opportunities"
42+
- Get involved!: "volunteer"
43+
Contact Us: "contact"
44+
45+
# Image to show in the navigation bar - image must be a square (width = height)
46+
# Remove this parameter if you don't want an image in the navbar
47+
avatar: "/img/OSR_logo_avatar.png"
48+
49+
# If you want to have an image logo in the top-left corner instead of the title text,
50+
# then specify the following parameter
51+
#title-img: /img/logo-osr2020_square.png
52+
53+
# --- Background colour/image options --- #
54+
55+
# Personalize the colors in your website. Colour values can be any valid CSS colour
56+
57+
navbar-col: "#FFFFF"
58+
navbar-text-col: "#4247A6"
59+
navbar-children-col: "#F5F5F5"
60+
page-col: "#FFFFFF"
61+
link-col: "#676AC2"
62+
hover-col: "#808080"
63+
footer-col: "#D6D7E3"
64+
footer-text-col: "#676AC2"
65+
footer-link-col: "#676AC2"
66+
67+
# Alternatively, the navbar, footer, and page background can be set to use background images
68+
# instead of colour
69+
70+
# navbar-img: "/img/bgimage.png"
71+
# footer-img: "/img/bgimage.png"
72+
# page-img: "/img/bgimage.png"
73+
74+
# --- Footer options --- #
75+
76+
# Change all these values or delete the ones you don't want.
77+
# Important: you must keep the "name" parameter, everything else you can remove
78+
author:
79+
name: OSSIG
80+
81+
# Select your active Social Network Links.
82+
# Uncomment the links you want to show in the footer and add your information to each link.
83+
# You can reorder the items to define the link order.
84+
# If you want to add a new link that isn't here, you'll need to also edit the file _data/SocialNetworks.yml
85+
social-network-links:
86+
# rss: true
87+
88+
facebook: openscience.ohbm
89+
github: ohbm
90+
twitter: OhbmOpen
91+
# reddit: yourname
92+
# linkedin: Name
93+
94+
# email: "[email protected]" #this email is still used by past OSR chairs
95+
# xing: yourname
96+
# stackoverflow: "3943160/daattali"
97+
# snapchat: yourname
98+
# instagram: yourname
99+
youtube: channel/UChvSitFvqGDeA1y7MJs4CGQ
100+
# spotify: yourname
101+
# telephone: +14159998888
102+
# steam: yourname
103+
# twitch: yourname
104+
# yelp: yourname
105+
106+
# Select which share links to show in posts
107+
share-links-active:
108+
twitter: true
109+
facebook: true
110+
linkedin: true
111+
112+
# How to display the link to the website in the footer
113+
# Remove this if you don't want a link in the footer
114+
url-pretty: "ohbm.github.io/osr2023" # eg. "deanattali.com/beautiful-jekyll"
115+
116+
# --- Web Statistics Section --- #
117+
118+
# Fill in your Google Analytics gtag.js ID to track your website using gtag
119+
#gtag: ""
120+
121+
# Fill in your Google Analytics ID to track your website using GA
122+
#google_analytics: ""
123+
124+
# Google Tag Manager ID
125+
#gtm: ""
126+
127+
# Matomo (aka Piwik) Web statistics
128+
# Uncomment the following section to enable Matomo. The opt-out parameter controls
129+
# whether or not you want to allow users to opt out of tracking.
130+
131+
#matomo:
132+
# site_id: "9"
133+
# uri: "demo.wiki.pro"
134+
# opt-out: true
135+
136+
# --- Comments --- #
137+
138+
# Fill in your Disqus shortname (NOT the userid) if you want to support Disqus comments
139+
# disqus: "OSSIG-OSR"
140+
141+
# If you want to use JustComments fill with the API Key
142+
#just-comments: "ABCD-EFGH-IJKL"
143+
144+
# To use Facebook Comments, fill in a Facebook App ID
145+
# fb_comment_id: ""
146+
147+
# To use Staticman comments, fill in repository, branch, and endpoint
148+
staticman:
149+
repository : # GitHub username/repository eg. "daattali/beautiful-jekyll"
150+
branch : master # If you're not using `master` branch, then you also need to update the `branch` parameter in `staticman.yml`
151+
endpoint : # URL of your own deployment, with a trailing slash (will fallback to a public GitLab instance) eg. https://<your-api>/v3/entry/github/
152+
reCaptcha:
153+
# reCaptcha for Staticman (OPTIONAL, but recommended for spam protection)
154+
# If you use reCaptcha, you must also set these parameters in staticman.yml
155+
siteKey : # Use your own site key, you need to apply for one on Google
156+
secret : # ENCRYPT your password by going to https://staticman3.herokuapp.com/v3/encrypt/<your-site-secret>
157+
158+
# --- Misc --- #
159+
160+
# Facebook App ID
161+
# fb_app_id: ""
162+
163+
# Excerpt Word Length
164+
# Truncates the excerpt to the specified number of words on the index page
165+
excerpt_length: 50
166+
167+
# Character used to separate site title and description in HTML document title
168+
# and RSS feed title
169+
title-separator: "-"
170+
171+
# Ruby Date Format
172+
date_format: "%B %-d, %Y"
173+
174+
# --- Don't need to touch anything below here (but you can if you want) --- #
175+
176+
# Output options (more information on Jekyll's site)
177+
timezone: "Europe/Amsterdam"
178+
markdown: kramdown
179+
highlighter: rouge
180+
permalink: /:year-:month-:day-:title/
181+
paginate: 5
182+
183+
kramdown:
184+
input: GFM
185+
186+
# Default YAML values (more information on Jekyll's site)
187+
defaults:
188+
-
189+
scope:
190+
path: ""
191+
type: "posts"
192+
values:
193+
layout: "post"
194+
comments: true # add comments to all blog posts
195+
social-share: true # add social media sharing buttons to all blog posts
196+
-
197+
scope:
198+
path: "" # all files
199+
values:
200+
layout: "page"
201+
show-avatar: true
202+
203+
# Use tags index page and make tags on each post clickable
204+
link-tags: true
205+
206+
# Exclude these files from production site
207+
exclude:
208+
- CHANGELOG.md
209+
- CNAME
210+
- Dockerfile
211+
- Gemfile
212+
- Gemfile.lock
213+
- LICENSE
214+
- README.md
215+
- Vagrantfile
216+
217+
# prose.io config
218+
prose:
219+
rooturl: '_posts'
220+
media: 'img'
221+
ignore:
222+
- 404.html
223+
- LICENSE
224+
- feed.xml
225+
- _config.yml
226+
- /_layouts
227+
- /_includes
228+
- /css
229+
- /img
230+
- /js
231+
- /_team
232+
metadata:
233+
_posts:
234+
- name: "layout"
235+
field:
236+
element: "hidden"
237+
value: "post"
238+
- name: "title"
239+
field:
240+
element: "text"
241+
label: "Post title"
242+
placeholder: "Title"
243+
alterable: true
244+
- name: "subtitle"
245+
field:
246+
element: "textarea"
247+
label: "Subtitle"
248+
placeholder: "A description of your post."
249+
alterable: true
250+
- name: "date"
251+
field:
252+
element: "text"
253+
label: "Date"
254+
help: "Enter date of post."
255+
placeholder: "yyyy-mm-dd"
256+
alterable: true
257+
- name: "image"
258+
field:
259+
element: "text"
260+
label: "Image"
261+
help: "Add a thumbnail image to your post."
262+
placeholder: "Thumbnail"
263+
alterable: true
264+
- name: "published"
265+
field:
266+
element: "checkbox"
267+
label: "Publish"
268+
help: "Check to publish post, uncheck to hide."
269+
270+
plugins:
271+
- jekyll-paginate
272+
- jekyll-sitemap
273+
- jemoji
274+
275+
permalinks: pretty
276+
277+
paginate_path: "/news/page:num/"
278+
# Beautiful Jekyll / Dean Attali
279+
# 2fc73a3a967e97599c9763d05e564189
280+
281+
plugins:
282+
- pagemaster
283+
284+
# collections:
285+
# speakers:
286+
# output: true
287+
# source: speakers.csv
288+
# id_key: Name
289+
# layout: speaker_page
290+
291+
# volunteers:
292+
# output: true
293+
# source: volunteers.csv
294+
# id_key: Name
295+
# layout: speaker_page

0 commit comments

Comments
 (0)