mirror of
https://github.com/golang/go
synced 2024-11-19 03:04:42 -07:00
753a094e8a
Change-Id: I35e7cbec56a0617540316f0205c5a92e7532c491 Reviewed-on: https://go-review.googlesource.com/4910 Reviewed-by: Minux Ma <minux@golang.org>
67 lines
1.5 KiB
Cheetah
67 lines
1.5 KiB
Cheetah
{/* This is the slide template. It defines how presentations are formatted. */}
|
|
|
|
{{define "root"}}
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>{{.Title}}</title>
|
|
<meta charset='utf-8'>
|
|
<script src='/static/slides.js'></script>
|
|
</head>
|
|
|
|
<body style='display: none'>
|
|
|
|
<section class='slides layout-widescreen'>
|
|
|
|
<article>
|
|
<h1>{{.Title}}</h1>
|
|
{{with .Subtitle}}<h3>{{.}}</h3>{{end}}
|
|
{{if not .Time.IsZero}}<h3>{{.Time.Format "2 January 2006"}}</h3>{{end}}
|
|
{{range .Authors}}
|
|
<div class="presenter">
|
|
{{range .TextElem}}{{elem $.Template .}}{{end}}
|
|
</div>
|
|
{{end}}
|
|
</article>
|
|
|
|
{{range $i, $s := .Sections}}
|
|
<!-- start of slide {{$s.Number}} -->
|
|
<article>
|
|
{{if $s.Elem}}
|
|
<h3>{{$s.Title}}</h3>
|
|
{{range $s.Elem}}{{elem $.Template .}}{{end}}
|
|
{{else}}
|
|
<h2>{{$s.Title}}</h2>
|
|
{{end}}
|
|
</article>
|
|
<!-- end of slide {{$i}} -->
|
|
{{end}}{{/* of Slide block */}}
|
|
|
|
<article>
|
|
<h3>Thank you</h3>
|
|
{{range .Authors}}
|
|
<div class="presenter">
|
|
{{range .Elem}}{{elem $.Template .}}{{end}}
|
|
</div>
|
|
{{end}}
|
|
</article>
|
|
|
|
</section>
|
|
|
|
<div id="help">
|
|
Use the left and right arrow keys or click the left and right
|
|
edges of the page to navigate between slides.<br>
|
|
(Press 'H' or navigate to hide this message.)
|
|
</div>
|
|
|
|
</body>
|
|
{{if .PlayEnabled}}
|
|
<script src='/play.js'></script>
|
|
{{end}}
|
|
</html>
|
|
{{end}}
|
|
|
|
{{define "newline"}}
|
|
<br>
|
|
{{end}}
|