Small CSS changes
This commit is contained in:
parent
c2b4e8467b
commit
7a5ab7cf09
3 changed files with 64 additions and 34 deletions
|
@ -8,14 +8,18 @@
|
||||||
<link rel="stylesheet" type="text/css" href="{{.relpath}}style.css" />
|
<link rel="stylesheet" type="text/css" href="{{.relpath}}style.css" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1>{{.title}}</h1>
|
<main>
|
||||||
|
<div id="content">
|
||||||
|
<h1>{{.title}}</h1>
|
||||||
|
|
||||||
{{if ne (len .recipes) 0}}
|
{{if ne (len .recipes) 0}}
|
||||||
<ul>
|
<ul>
|
||||||
{{range .recipes}}
|
{{range .recipes}}
|
||||||
<li><a href="{{.Path}}">{{.Name}}</a></li>
|
<li><a href="{{.Path}}">{{.Name}}</a></li>
|
||||||
{{end}}
|
{{end}}
|
||||||
</ul>
|
</ul>
|
||||||
{{end}}
|
{{end}}
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -8,35 +8,39 @@
|
||||||
<link rel="stylesheet" type="text/css" href="{{.relpath}}style.css" />
|
<link rel="stylesheet" type="text/css" href="{{.relpath}}style.css" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1>{{.name}}</h1>
|
<main>
|
||||||
|
<div id="content">
|
||||||
|
<h1>{{.name}}</h1>
|
||||||
|
|
||||||
{{$recipeImage := recipeImage .path}}
|
{{$recipeImage := recipeImage .path}}
|
||||||
{{if ne $recipeImage ""}}
|
{{if ne $recipeImage ""}}
|
||||||
<img class="recipeimage" src="{{$recipeImage}}" />
|
<img class="recipeimage" src="{{$recipeImage}}" />
|
||||||
{{end}}
|
|
||||||
|
|
||||||
{{if ne (len .recipe.Metadata) 0}}
|
|
||||||
<ul>
|
|
||||||
{{$m := .recipe.Metadata}}
|
|
||||||
{{$nameKey := .nameKey}}
|
|
||||||
{{range $k := sortedMetadataKeys $m}}
|
|
||||||
{{if ne $k $nameKey}}
|
|
||||||
<li><em>{{$k}}:</em> {{index $m $k}}</li>
|
|
||||||
{{end}}
|
{{end}}
|
||||||
{{end}}
|
|
||||||
</ul>
|
|
||||||
{{end}}
|
|
||||||
|
|
||||||
{{recipeSteps .recipe .path}}
|
{{if ne (len .recipe.Metadata) 0}}
|
||||||
|
<ul>
|
||||||
<h2>{{.ingredientsTitle}}</h2>
|
{{$m := .recipe.Metadata}}
|
||||||
|
{{$nameKey := .nameKey}}
|
||||||
<ul>
|
{{range $k := sortedMetadataKeys $m}}
|
||||||
{{range .recipe.Steps}}
|
{{if ne $k $nameKey}}
|
||||||
{{range .Ingredients}}
|
<li><em>{{$k}}:</em> {{index $m $k}}</li>
|
||||||
<li>{{.Name}} {{if ne .Amount.QuantityRaw ""}}({{.Amount.QuantityRaw}}{{if ne .Amount.Unit ""}} {{.Amount.Unit}}{{end}}){{end}}</li>
|
{{end}}
|
||||||
|
{{end}}
|
||||||
|
</ul>
|
||||||
{{end}}
|
{{end}}
|
||||||
{{end}}
|
|
||||||
</ul>
|
{{recipeSteps .recipe .path}}
|
||||||
|
|
||||||
|
<h2>{{.ingredientsTitle}}</h2>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
{{range .recipe.Steps}}
|
||||||
|
{{range .Ingredients}}
|
||||||
|
<li>{{.Name}} {{if ne .Amount.QuantityRaw ""}}({{.Amount.QuantityRaw}}{{if ne .Amount.Unit ""}} {{.Amount.Unit}}{{end}}){{end}}</li>
|
||||||
|
{{end}}
|
||||||
|
{{end}}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -1,8 +1,30 @@
|
||||||
body {
|
body {
|
||||||
|
font-size: 1.3rem;
|
||||||
background-color: lightgrey;
|
background-color: lightgrey;
|
||||||
font-family: monospace;
|
font-family: monospace;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
main {
|
||||||
|
display: flex;
|
||||||
|
flex-flow: column;
|
||||||
|
align-items: center;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
#content {
|
||||||
|
width: 80%;
|
||||||
|
display: flex;
|
||||||
|
flex-flow: column;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
max-width: 50%;
|
||||||
|
max-height: 500px;
|
||||||
|
}
|
||||||
|
|
||||||
.ingredient {
|
.ingredient {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: green;
|
color: green;
|
||||||
|
|
Loading…
Reference in a new issue