Link to homepage in banner; link to examples page.

This commit is contained in:
Tony Garnock-Jones 2016-04-06 18:42:05 +02:00
parent c67b57a445
commit 1ddfa3ee99
3 changed files with 10 additions and 1 deletions

View File

@ -1,5 +1,5 @@
<!-- -*- html -*- -->
<div class="pagebanner">
<h1>{{ site.title }}</h1>
<h1><a href="{{ site.baseurl }}/">{{ site.title }}</a></h1>
<h2>{{ site.subtitle }}</h2>
</div>

View File

@ -92,6 +92,11 @@ The full code for the Racket example is
and for the JavaScript example,
[demo-bankaccount.js](https://github.com/tonyg/syndicate/blob/master/js/compiler/demo-bankaccount.js).
## Live Syndicate/js demos
[This page](examples/) links to in-browser runnable demos (and source
code) of Syndicate/js programs.
## Code
Syndicate is implemented both for [Racket](http://racket-lang.org/)

View File

@ -335,6 +335,10 @@ em {
color: white;
}
.pagebanner a {
color: white;
}
.pagebanner h1 {
text-align: right;
}