mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-09 13:09:33 -06:00
148 lines
5.4 KiB
HTML
148 lines
5.4 KiB
HTML
<!DOCTYPE html>
|
||
<html xmlns="http://www.w3.org/1999/xhtml" lang="$lang$" xml:lang="$lang$"$if(dir)$ dir="$dir$"$endif$>
|
||
<head>
|
||
<meta charset="utf-8" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
$for(author-meta)$
|
||
<meta name="author" content="$author-meta$" />
|
||
$endfor$
|
||
$if(date-meta)$
|
||
<meta name="dcterms.date" content="$date-meta$" />
|
||
$endif$
|
||
$if(keywords)$
|
||
<meta name="keywords" content="$for(keywords)$$keywords$$sep$, $endfor$" />
|
||
$endif$
|
||
<title>$if(title-prefix)$$title-prefix$ – $endif$$pagetitle$</title>
|
||
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
|
||
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.4.2/css/all.css" integrity="sha384-/rXc/GQVaYpyDdyxK+ecHPVYJSN9bmVFBvjA/9eOB+pb3F2w2N6fc5qB9Ew5yIns" crossorigin="anonymous">
|
||
$for(css)$
|
||
<link rel="stylesheet" href="$css$" />
|
||
$endfor$
|
||
$if(math)$
|
||
$math$
|
||
$endif$
|
||
<!--[if lt IE 9]>
|
||
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
|
||
<![endif]-->
|
||
$for(header-includes)$
|
||
$header-includes$
|
||
$endfor$
|
||
</head>
|
||
<body class="bg-light">
|
||
<div class="bg-white pb-5">
|
||
$for(include-before)$
|
||
$include-before$
|
||
$endfor$
|
||
<div class="container-fluid py-5" style="max-width:1200px">
|
||
|
||
$if(title)$
|
||
<header id="title-block-header">
|
||
<a href="$rel-root$" title="Home">
|
||
<img src="$rel-root$/doc/Logos/gf1.svg" height="200" class="float-md-right ml-3 mb-3 bg-white" alt="GF Logo">
|
||
</a>
|
||
<h1 class="title">$title$</h1>
|
||
$if(subtitle)$
|
||
<p class="subtitle">$subtitle$</p>
|
||
$endif$
|
||
$for(author)$
|
||
<p class="author">$author$</p>
|
||
$endfor$
|
||
$if(date)$
|
||
<p class="date">$date$</p>
|
||
$endif$
|
||
</header>
|
||
$endif$
|
||
$if(toc)$
|
||
<nav id="$idprefix$TOC">
|
||
$if(table-of-contents)$
|
||
<!-- pandoc >= 2.0 -->
|
||
$table-of-contents$
|
||
$else$
|
||
<!-- pandoc < 2.0 -->
|
||
$toc$
|
||
$endif$
|
||
</nav>
|
||
$endif$
|
||
$body$
|
||
</div><!-- .container -->
|
||
</div><!-- .bg-white -->
|
||
|
||
<footer class="py-5">
|
||
<div class="container">
|
||
<div class="row">
|
||
|
||
<div class="col-6 col-sm-3">
|
||
<a href="$rel-root$">
|
||
<i class="fas fa-home"></i>
|
||
Home
|
||
</a>
|
||
<h6 class="text-muted mt-3">Get started</h6>
|
||
<ul class="list-unstyled">
|
||
<li><a href="https://www.youtube.com/watch?v=x1LFbDQhbso">Google Tech Talk</a></li>
|
||
<li><a href="http://cloud.grammaticalframework.org/">GF Cloud</a></li>
|
||
<li>
|
||
<a href="$rel-root$/doc/tutorial/gf-tutorial.html">Tutorial</a>
|
||
·
|
||
<a href="$rel-root$/lib/doc/rgl-tutorial/index.html">RGL Tutorial</a>
|
||
</li>
|
||
<li><a href="$rel-root$/doc/gf-video-tutorials.html">Video Tutorials</a></li>
|
||
<li><a href="$rel-root$/download"><strong>Download GF</strong></a></li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div class="col-6 col-sm-3">
|
||
<h6 class="text-muted">Learn more</h6>
|
||
<ul class="list-unstyled">
|
||
<li><a href="$rel-root$/gf-book">The GF Book</a></li>
|
||
<li><a href="$rel-root$/doc/gf-refman.html">Reference Manual</a></li>
|
||
<li><a href="$rel-root$/doc/gf-shell-reference.html">GF Shell Reference</a></li>
|
||
<li><a href="http://www.molto-project.eu/sites/default/files/MOLTO_D2.3.pdf">Best Practices</a></li>
|
||
<li><a href="$rel-root$/lib/doc/synopsis/index.html"><strong>RGL Synopsis</strong></a></li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div class="col-6 col-sm-3">
|
||
<h6 class="text-muted">Develop</h6>
|
||
<ul class="list-unstyled">
|
||
<li><a href="$rel-root$/doc/gf-developers.html">Developers Guide</a></li>
|
||
<li><a href="http://hackage.haskell.org/package/gf/docs/PGF.html">PGF library API (Haskell runtime)</a></li>
|
||
<li><a href="$rel-root$/doc/runtime-api.html">PGF library API (C runtime)</a></li>
|
||
<li><a href="http://hackage.haskell.org/package/gf/docs/GF.html">GF compiler API</a></li>
|
||
<li><a href="$rel-root$/doc/gf-editor-modes.html">Text Editor Support</a></li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div class="col-6 col-sm-3">
|
||
<h6 class="text-muted">Contribute</h6>
|
||
<ul class="list-unstyled">
|
||
<li><a href="http://groups.google.com/group/gf-dev">Mailing List</a></li>
|
||
<li><a href="https://github.com/GrammaticalFramework/gf-core/issues">Issue Tracker</a></li>
|
||
<li><a href="$rel-root$/doc/gf-people.html">Authors</a></li>
|
||
<li><a href="http://school.grammaticalframework.org/2018/">Summer School</a></li>
|
||
</ul>
|
||
<h6 class="text-muted">
|
||
Repositories
|
||
<i class="fab fa-github ml-1"></i>
|
||
</h6>
|
||
<a href="https://github.com/GrammaticalFramework/gf-core">GF</a> ·
|
||
<a href="https://github.com/GrammaticalFramework/gf-rgl">RGL</a> ·
|
||
<a href="https://github.com/GrammaticalFramework/gf-contrib">Contributions</a>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</footer>
|
||
$for(include-after)$
|
||
$include-after$
|
||
$endfor$
|
||
<script type="text/javascript">
|
||
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
|
||
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
|
||
</script>
|
||
<script type="text/javascript">
|
||
try {
|
||
var pageTracker = _gat._getTracker("UA-7811807-3");
|
||
pageTracker._trackPageview();
|
||
} catch(err) {}</script>
|
||
</body>
|
||
</html>
|