Skip to content

Commit

Permalink
site bootstrap
Browse files Browse the repository at this point in the history
  • Loading branch information
richardbeare committed Sep 21, 2015
1 parent 64daed1 commit 61abd91
Show file tree
Hide file tree
Showing 5 changed files with 159 additions and 1 deletion.
3 changes: 3 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
name: Developmental Imaging Software Releases
markdown: redcarpet
highlighter: pygments
34 changes: 34 additions & 0 deletions _layouts/default.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title> {% if page.title %} {{ page.title }} | {% endif %} MANTiS
neonate tissue segmentation </title>
<link href='//fonts.googleapis.com/css?family=Roboto+Slab:300,400|Roboto:300,400,700,400italic,700italic,500' rel=stylesheet type='text/css' media=all>

<link rel="stylesheet" href="{{ site.baseurl}}/css/style.css" />
</head>
<body>

<div id="main">

<header>
<h1> Developmental Imaging Software </h1>
</header>

<nav role="navigation">
<ul>
<li><a href="{{ site.baseurl }}{{ post.url }}/">Home</a></li>
<li><a href="{{ site.baseurl }}{{ post.url }}/contact">Contact</a></li>
</ul>
</nav>

{{ content }}

<footer>
<p>@copy; Developmental Imaging Group, MCRI</p>
</footer>

</div>
</body>
</html>
12 changes: 12 additions & 0 deletions contact/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
layout: default
title: Developmental Imaging Contacts
---
<br>
# Contacts
<section class="content">
Please use github issue trackers for queries/bugs with individual software
packages

1. [Developmental Imaging Group home page] (https://www.mcri.edu.au/ClinicalSciences/DevelopmentalImaging "DIGroup")

95 changes: 95 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
h1, h2, h3, h4, body, .main {
font-family: "Roboto","Helvetica Neue",Helvetica,Arial,sans-serif;
src: local("Roboto Slab Light"), local("RobotoSlab-Light"), url("https://fonts.gstatic.com/s/robotoslab/v6/dazS1PrQQuCxC3iOAJFEJUo2lTMeWA_kmIyWrkNCwPc.woff2") format("woff2");
color: #646B74;
}


.content, body {
background: white;
font-size: 14px;
line-height: 1.7;
font-style: normal;
padding: 10px;
}


ul {
margin: 0;
padding: 0;
}
a {
color: #00728E;
text-decoration: none;
}

a:hover {
color: #00728E;
text-decoration: underline;
}

#main {
width: 825px;
margin: 0 auto;
background: rgba(255, 255, 255, 1);
}
header {
padding: 0 10px;
overflow: hidden;
}
h1, h2 {
font-style: normal;
font-weight: 300;
line-height: 1.2;
margin: 0px;
color: #30363E;
}

h1 {
font-size: 36px;

}
h2 {
margin: 0px;
text-align: left;
font-size: 30px;
}

nav ul, ul.entries {
list-style-type: none;
}
nav li a {
float: left;
margin: 10px;
color: #00AFDB;
}

ul.entries li {
position: relative;
margin: 20px auto;
padding: 20px;
background: #ececec;
width: 600px;
}

ul.entries img {
width: 600px;
}

ul.entries li h3 {
position: absolute;
bottom: -18px;
left: 17px;
font-size: 2em;
}
ul.entries a {
color: #ececec;
}
ul.entries a:hover {
color: #00728E;
}

footer {
font-size: 0.65em;
text-align: center;
}
16 changes: 15 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
@@ -1 +1,15 @@
Hello World
---
layout: default
---
<br>
<section class="content">
The Developmental Imaging Group at the Murdoch Childrens Research Institute
works with MRI, CT and ultrasound imaging data for research studies.

Software we release for processing such data is available from this site:
<p>
<ul>
<li> <a href="DevelopmentalImagingMCRI.github.io/mantis">MANTiS: Morphologically adaptive neonate tissue segmentation.</a> An SPM toolbox for tissue classification in T2 weighted MRI scans for neonates.
</ul>
</p>
</section>

0 comments on commit 61abd91

Please sign in to comment.