Skip to content

Commit 4e89960

Browse files
committed
Add basic skeleton for the website
1 parent fa419d5 commit 4e89960

File tree

6 files changed

+92
-0
lines changed

6 files changed

+92
-0
lines changed

docs/_config.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
theme: jekyll-theme-minimal
2+
title: spark3D
3+
description: Spark extension for processing large-scale 3D data sets, such as astrophysical or high energy physics data.
4+
logo: /spark3d_logo.jpg
5+
show_downloads: true
6+
google_analytics:
7+
github_username: JulienPeloton

docs/_layouts/default.html

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
<!DOCTYPE html>
2+
<html lang="{{ site.lang | default: "en-US" }}">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="viewport" content="width=device-width, initial-scale=1">
7+
8+
{% seo %}
9+
<link rel="stylesheet" href="{{ "/assets/css/style.css?v=" | append: site.github.build_revision | relative_url }}">
10+
<!--[if lt IE 9]>
11+
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script>
12+
<![endif]-->
13+
</head>
14+
<body>
15+
<div class="wrapper">
16+
<header>
17+
<h1><a href="{{ "/" | absolute_url }}">{{ site.title | default: site.github.repository_name }}</a></h1>
18+
19+
{% if site.logo %}
20+
<img src="{{site.logo | relative_url}}" alt="Logo" />
21+
{% endif %}
22+
23+
<p>{{ site.description | default: site.github.project_tagline }}</p>
24+
25+
{% if site.github.is_project_page %}
26+
<!-- <p class="view"><a href="{{ site.github.repository_url }}">View the Project on GitHub <small>{{ site.github.repository_nwo }}</small></a></p> --!>
27+
<!-- <link rel="shortcut icon" type="image/png" href="GitHub-Mark-120px-plus.png"> --!>
28+
{% endif %}
29+
30+
{% if site.github.is_user_page %}
31+
<p class="view"><a href="{{ site.github.owner_url }}">View My GitHub Profile</a></p>
32+
{% endif %}
33+
34+
{% if site.show_downloads %}
35+
<ul class="downloads">
36+
<li><a href="{{ site.github.zip_url }}">Download <strong>ZIP File</strong></a></li>
37+
<li><a href="{{ site.github.tar_url }}">Download <strong>TAR Ball</strong></a></li>
38+
<li><a href="{{ site.github.repository_url }}">View On <strong>GitHub</strong></a></li>
39+
</ul>
40+
{% endif %}
41+
</header>
42+
<section>
43+
44+
{{ content }}
45+
46+
</section>
47+
<footer>
48+
{% if site.github.is_project_page %}
49+
<p>This project is maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a></p>
50+
{% endif %}
51+
<!-- <p><small>Hosted on GitHub Pages &mdash; Theme by <a href="https://github.com/orderedlist">orderedlist</a></small></p> --!>
52+
</footer>
53+
</div>
54+
<script src="{{ "/assets/js/scale.fix.js" | relative_url }}"></script>
55+
{% if site.google_analytics %}
56+
<script>
57+
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
58+
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
59+
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
60+
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
61+
ga('create', '{{ site.google_analytics }}', 'auto');
62+
ga('send', 'pageview');
63+
</script>
64+
{% endif %}
65+
</body>
66+
</html>

docs/docs/.__empty__

Whitespace-only changes.

docs/index.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Salut1
2+
3+
Salut!
4+
5+
```scala
6+
val toto: Double = 3.0
7+
```
8+
9+
## toto
10+
11+
[Link to a post]({{ site.baseurl }}{% link post.md %})

docs/post.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
layout: post
3+
title: "The One with the Blackout"
4+
date: 2016-03-30 19:45:31 +0530
5+
categories: ["life", friends]
6+
---
7+
8+
first post

docs/spark3d_logo.jpg

103 KB
Loading

0 commit comments

Comments
 (0)