Initial gh-pages commit.

This commit is contained in:
Tony Garnock-Jones 2016-03-09 11:23:06 +00:00
commit d82b74a946
5 changed files with 41 additions and 0 deletions

1
CNAME Normal file
View File

@ -0,0 +1 @@
syndicate-lang.org

8
_config.yml Normal file
View File

@ -0,0 +1,8 @@
defaults:
-
scope:
path: ""
values:
layout: page
title: Syndicate

4
_layouts/page.html Normal file
View File

@ -0,0 +1,4 @@
---
layout: skeleton
---
{{ content }}

19
_layouts/skeleton.html Normal file
View File

@ -0,0 +1,19 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>{{ site.title }}: {{ page.title }}</title>
<link rel="stylesheet" type="text/css" href="{{ site.baseurl }}/style.css" title="stylesheet" media="screen">
<meta name="author" content="Tony Garnock-Jones">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div id="page">
<div id="content">
{{ content }}
</div>
</div>
</body>
</html>

9
index.md Normal file
View File

@ -0,0 +1,9 @@
---
title: Main Page
layout: page
---
# Syndicate
Syndicate is an Actor-based language with multicast, features for
managing shared state, and grouping of actors.