Skip to content

Commit b6bee10

Browse files
committed
adding skeleton of site!
1 parent 2dda734 commit b6bee10

File tree

81 files changed

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

81 files changed

+9274
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
OLD*
2+
_site
3+
_OLD*

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# OpenSchemas Site
2+
3+
Hi friend! This site will be home of the Open Schemas specifications, and is under development.
4+
It is deployed using [Jekyll](https://jekyllrb.com/).
5+
6+
![assets/images/logos/openschemas/logo_hexagon.png](assets/images/logos/openschemas/logo_hexagon.png)
7+
8+
## Geting Started
9+
10+
See [installation instructions](https://jekyllrb.com/docs/installation/) for full details of installing Jekyll. Below are a quick set of commands that should hopefully get you going:
11+
12+
- Install Jekyll and Dependencies: ```gem install jekyll bundler jekyll-redirect-from```
13+
- Clone the repository: ```git clone https://github.com/BioSchemas/bioschemas.github.io.git```
14+
- Run the website: ```jekyll serve```

_config.yml

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# Welcome to Jekyll!
2+
#
3+
# This config file is meant for settings that affect your whole blog, values
4+
# which you are expected to set up once and rarely need to edit after that.
5+
# For technical reasons, this file is *NOT* reloaded automatically when you use
6+
# 'jekyll serve'. If you change this file, please restart the server process.
7+
8+
# Site settings
9+
title: OpenSchemas
10+
11+
description: > # this means to ignore newlines until "baseurl:"
12+
OpenSchemas relies and extends from schema.org to generate specifications for open science.
13+
baseurl: "" # the subpath of your site, e.g. /blog
14+
url: "" # the base hostname & protocol for your site
15+
logo: assets/images/logos/openschemas/logo_hexagon.png
16+
17+
# Alias
18+
github_username: openschemas
19+
repo: https://github.com/openschemas/openschemas.github.io
20+
name: OpenSchemas
21+
twitter: containertools
22+
23+
24+
# Build settings
25+
markdown: kramdown
26+
27+
plugins:
28+
- jekyll-redirect-from
29+
- jekyll-sitemap
30+
31+
# Collections
32+
collections:
33+
specifications:
34+
output: true
35+
permalink: /:collection/:path/
36+
devSpecs:
37+
output: true
38+
permalink: /:collection/:path/
39+
types:
40+
output: true
41+
permalink: /:collection/:path/
42+
devTypes:
43+
output: true
44+
permalink: /:collection/:path/
45+
people:
46+
output: true
47+
permalink: /:collection/:path/
48+
groups:
49+
output: true
50+
permalink: /:collection/:path/
51+
useCases:
52+
output: true
53+
permalink: /:collection/:path/
54+
stories:
55+
output: true

_devSpecs/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
tba

_devTypes/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
tba

_includes/collections_footer.html

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<div class="inner footer_buttons">
2+
3+
<div class="inner footer_links">
4+
5+
<a href="#top" id="top_link"><div>Top &#9650;</div></a>
6+
7+
</div>
8+
9+
<div class="inner footer_links">
10+
<a href="/{{page.collection}}/" id="back_groups"><div>&#9668; {{ page.collection | capitalize }}</div></a>
11+
</div>
12+
13+
</div>
14+
15+
<div id="footer_wrap" class="outer">
16+
<footer class="inner">
17+
18+
<img class="img_bottom rotation" src="{{ site.baseurl }}{{ site.logo }}" alt="{{ site.name }}">
19+
<p class="p_bottom">Hugs &amp; bugs: <a href="mailto:{{ site.repo }}/issues">{{ site.name }} Issue Board</a></p>
20+
<p class="p_bottom">&copy; 2016</p>
21+
22+
23+
</footer>
24+
</div>
25+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
26+
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
27+
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.0/umd/popper.min.js" integrity="sha384-cs/chFZiN24E4KMATLdqdvsezGxaGsi4hLGOzlXwp5UZB1LY//20VyM2taTB4QvJ" crossorigin="anonymous"></script>
28+
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js" integrity="sha384-uefMccjFJAIv6A+rW+L4AHf99KvxDjWSu1z9VI8SKNVmz4sk7buKt/6v9KI65qnm" crossorigin="anonymous"></script>
29+
<script src="{{ site.baseurl }}/assets/js/clipboard.min.js"></script>
30+
<script src="{{ site.baseurl }}/assets/js/scripts.js"></script>

_includes/favicon.html

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<link rel="apple-touch-icon" sizes="57x57" href="{{ site.baseurl }}/assets/images/favicon/apple-icon-57x57.png">
2+
<link rel="apple-touch-icon" sizes="60x60" href="{{ site.baseurl }}/assets/images/favicon/apple-icon-60x60.png">
3+
<link rel="apple-touch-icon" sizes="72x72" href="{{ site.baseurl }}/assets/images/favicon/apple-icon-72x72.png">
4+
<link rel="apple-touch-icon" sizes="76x76" href="{{ site.baseurl }}/assets/images/favicon/apple-icon-76x76.png">
5+
<link rel="apple-touch-icon" sizes="114x114" href="{{ site.baseurl }}/assets/images/favicon/apple-icon-114x114.png">
6+
<link rel="apple-touch-icon" sizes="120x120" href="{{ site.baseurl }}/assets/images/favicon/apple-icon-120x120.png">
7+
<link rel="apple-touch-icon" sizes="144x144" href="{{ site.baseurl }}/assets/images/favicon/apple-icon-144x144.png">
8+
<link rel="apple-touch-icon" sizes="152x152" href="{{ site.baseurl }}/assets/images/favicon/apple-icon-152x152.png">
9+
<link rel="apple-touch-icon" sizes="180x180" href="{{ site.baseurl }}/assets/images/favicon/apple-icon-180x180.png">
10+
<link rel="icon" type="image/png" sizes="192x192" href="{{ site.baseurl }}/assets/images/favicon/android-icon-192x192.png">
11+
<link rel="icon" type="image/png" sizes="32x32" href="{{ site.baseurl }}/assets/images/favicon/favicon-32x32.png">
12+
<link rel="icon" type="image/png" sizes="96x96" href="{{ site.baseurl }}/assets/images/favicon/favicon-96x96.png">
13+
<link rel="icon" type="image/png" sizes="16x16" href="{{ site.baseurl }}/assets/images/favicon/favicon-16x16.png">
14+
<link rel="manifest" href="{{ site.baseurl }}/assets/images/favicon/manifest.json">
15+
<meta name="msapplication-TileColor" content="#ffffff">
16+
<meta name="msapplication-TileImage" content="{{ site.baseurl }}/assets/images/favicon/ms-icon-144x144.png">
17+
<meta name="theme-color" content="#ffffff">

_includes/footer.html

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
2+
<div class="inner">
3+
<p><a href="#top" id="top_link">Top &#9650;</a></p>
4+
</div>
5+
<div id="footer_wrap" class="outer">
6+
<footer class="inner">
7+
<div class="acknowledge">
8+
9+
</div>
10+
<img class="img_bottom rotation" src="{{ site.baseurl }}/{{ site.logo }}" alt="{{ site.name }}">
11+
<div class="license">
12+
<p class="p_bottom" style="color:white">&copy; {{ site.time | date: '%Y' }} | This page is available under the <a target="_blank" href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike License</a></p>
13+
</div>
14+
</footer>
15+
</div>
16+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
17+
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
18+
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.0/umd/popper.min.js" integrity="sha384-cs/chFZiN24E4KMATLdqdvsezGxaGsi4hLGOzlXwp5UZB1LY//20VyM2taTB4QvJ" crossorigin="anonymous"></script>
19+
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js" integrity="sha384-uefMccjFJAIv6A+rW+L4AHf99KvxDjWSu1z9VI8SKNVmz4sk7buKt/6v9KI65qnm" crossorigin="anonymous"></script>
20+
<script src="{{ site.baseurl }}/assets/js/clipboard.min.js"></script>
21+
<script src="{{ site.baseurl }}/assets/js/scripts.js"></script>

_includes/head.html

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<head>
2+
<link href='https://fonts.googleapis.com/css?family=Noto+Sans' rel='stylesheet' type='text/css'>
3+
<meta charset="utf-8">
4+
<meta http-equiv="X-UA-Compatible" content="chrome=1">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
6+
7+
<title>{% if page.title %}
8+
{{ page.title | prepend: site.name | escape }}
9+
{% else %}
10+
{{ site.title | escape }}
11+
{% endif %}
12+
</title>
13+
<meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}">
14+
15+
{% include favicon.html %}
16+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
17+
<link rel="stylesheet" href="{{ "/assets/css/main.css" | prepend: site.baseurl }}">
18+
<link rel="stylesheet" href="{{ "/assets/css/stylesheet.css" | prepend: site.baseurl }}">
19+
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
20+
<link rel="alternate" type="application/rss+xml" title="{{ site.title }}" href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}">
21+
22+
<!-- Font Awesome -->
23+
<script defer src="{{ site.baseurl }}/assets/js/fontawesome-all.js"></script>
24+
</head>

_includes/header.html

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<a name="top"></a>
2+
3+
<div id="header_wrap" class="outer">
4+
<header class="inner">
5+
6+
<a id="forkme_banner" href="{{ site.repo }}"></a>
7+
<a id="twitter_banner" href="{{ site.twitter }}"></a>
8+
9+
<div class="biohex-logo">
10+
<a href="{{ site.baseurl }}">
11+
<img class="hexagon" src="{{ site.baseurl }}/{{ site.logo }}" alt="{{ site.name }}">
12+
</a><span style="font-size:60px; padding:30px; position: absolute">OpenSchemas</span>
13+
</div>
14+
<div class="git-edit">
15+
<a target="_blank" href="{{ site.repo }}/tree/master/{{ page.folder }}{{ page.path }}" class="btn btn-sm" role="button">
16+
<b>Edit me&nbsp;</b>
17+
<i class="fas fa-pencil-alt"></i>
18+
</a>
19+
</div>
20+
</header>
21+
</div>

_includes/mobile_navbar.html

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<div id="mobile_cont">
2+
3+
<div class="mobile_nav">
4+
<div class="navbar-toggle">
5+
<span class="sr-only">Toggle navigation</span>
6+
<span class="icon-bar"></span>
7+
<span class="icon-bar"></span>
8+
<span class="icon-bar"></span>
9+
</div>
10+
</div>
11+
12+
<div id="mobile_links">
13+
<p><a href="{{ site.baseurl }}" class="link-navbar"><div class="mobile_buttons">Home</div></a></p>
14+
<p><a href="{{ site.baseurl }}/join/" class="link-navbar"><div class="mobile_buttons">Join</div></a></p>
15+
<p><a href="{{ site.baseurl }}/specifications/" class="link-navbar"><div class="mobile_buttons">Specifications</div></a></p>
16+
<p><a href="{{ site.baseurl }}/software/" class="link-navbar"><div class="mobile_buttons">Software</div></a></p>
17+
</div>
18+
19+
</div>

_includes/navbar.html

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<!-- If you edit this file, remember to edit the mobile_navbar.html file as well -->
2+
<div class="trigger">
3+
4+
<div class="trigger_links">
5+
<a href="{{ site.baseurl }}" role="button" class="btn btn-primary"><i class="fas fa-home"></i> Home</a>
6+
<a href="{{ site.baseurl }}/join/" role="button" class="btn btn-primary">Join</a>
7+
<div class="btn-group" role="group">
8+
<button class="btn btn-primary dropdown-toggle" type="button" id="btnCommunity" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
9+
Specifications
10+
</button>
11+
<div class="dropdown-menu" aria-labelledby="btnCommunity">
12+
<a class="dropdown-item" href="{{ site.baseurl }}/specifications/">Current</a>
13+
<a class="dropdown-item" href="{{ site.baseurl }}/drafts">Drafts</a>
14+
</div>
15+
</div>
16+
<a href="{{ site.baseurl }}/software/" role="button" class="btn btn-primary">Software</a>
17+
</div>
18+
19+
{% include mobile_navbar.html %}
20+
21+
</div>

0 commit comments

Comments
 (0)