Added tailwind-css and description

This commit is contained in:
Felix Breidenstein 2019-11-05 02:19:12 +01:00
parent 0a37716c06
commit 09272a9f16
2 changed files with 42 additions and 9 deletions

View file

@ -11,9 +11,10 @@ import (
) )
type Talk struct { type Talk struct {
Title string Title string
Preview string Preview string
Path string Path string
Description string
} }
func generatePreview(path string) Talk { func generatePreview(path string) Talk {
@ -26,7 +27,7 @@ func generatePreview(path string) Talk {
mw.SetIteratorIndex(0) mw.SetIteratorIndex(0)
mw.SetImageFormat("jpg") mw.SetImageFormat("jpg")
mw.WriteImage(imagePath) mw.WriteImage(imagePath)
return Talk{Title: result[1], Preview: imagePath, Path: path} return Talk{Title: result[1], Preview: imagePath, Path: path, Description: "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua."}
} }
func main() { func main() {

View file

@ -1,5 +1,37 @@
{{ range . }} <!DOCTYPE html>
<h1>{{ .Title }}</h1> <html lang="en">
<img src="{{ .Preview }}" />
<a href="{{ .Path }}">Download</a> <head>
{{ end }} <meta charset="utf-8">
<title>slides.fleaz.me</title>
<link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet">
<style>
body {
font-family: "Helvetica", "Arial", sans-serif;
color: #555;
}
.block {
margin: 20px;
padding: 20px;
}
</style>
</head>
<body>
<div class="container mx-auto">
{{ range . }}
<div class="block clearfix">
<a href="{{ .Path }}">
<span class="text-2xl underline">{{ .Title }}</span>
<img class="h-48 float-right shadow-xl" src="{{ .Preview }}" />
<p>
{{ .Description }}
</p>
</a>
</div>
{{ end }}
</div>
</body>
</html>