Adds external URL to the recipe
This commit is contained in:
parent
7a5ab7cf09
commit
432be8dfb2
3 changed files with 13 additions and 1 deletions
1
cmd.go
1
cmd.go
|
@ -4,6 +4,7 @@ type generateCmd struct {
|
|||
Path string `arg:"" help:"Path to the directory with the recipes."`
|
||||
Output string `default:"dist" help:"Path to the directory where the files will be generated."`
|
||||
NameKey string `default:"name" short:"n" help:"The metadata key for the recipe name."`
|
||||
URLKey string `default:"url" short:"u" help:"The metadata key for the recipe URL."`
|
||||
Title string `default:"Recipes directory" short:"t" help:"The title to use at the recipe index."`
|
||||
IngredientsTitle string `default:"Ingredients" short:"i" help:"The title to use at the list of ingredients of each recipe"`
|
||||
}
|
||||
|
|
|
@ -263,16 +263,22 @@ func (g *generateCmd) Run() error {
|
|||
if name, ok := recipe.Metadata[g.NameKey]; ok {
|
||||
recipeName = name
|
||||
}
|
||||
recipeURL := ""
|
||||
if url, ok := recipe.Metadata[g.URLKey]; ok {
|
||||
recipeURL = url
|
||||
}
|
||||
|
||||
htmlPath := filepath.Join(filepath.Dir(relpath), fmt.Sprintf("%s.html", filenameWithoutExt))
|
||||
recipeFiles = append(recipeFiles, &RecipeFile{Name: recipeName, Path: htmlPath})
|
||||
recipeDistPath := filepath.Join(g.Output, htmlPath)
|
||||
data := map[string]any{
|
||||
"name": recipeName,
|
||||
"url": recipeURL,
|
||||
"recipe": recipe,
|
||||
"path": path,
|
||||
"relpath": getRelpath(relpath),
|
||||
"nameKey": g.NameKey,
|
||||
"urlKey": g.URLKey,
|
||||
"ingredientsTitle": g.IngredientsTitle,
|
||||
}
|
||||
slog.Debug("Executing template", "recipeName", recipeName, "recipeWebPath", recipeDistPath)
|
||||
|
|
|
@ -12,6 +12,10 @@
|
|||
<div id="content">
|
||||
<h1>{{.name}}</h1>
|
||||
|
||||
{{if ne .url ""}}
|
||||
<a class="recipe-url" href="{{.url}}">External URL</a>
|
||||
{{end}}
|
||||
|
||||
{{$recipeImage := recipeImage .path}}
|
||||
{{if ne $recipeImage ""}}
|
||||
<img class="recipeimage" src="{{$recipeImage}}" />
|
||||
|
@ -21,8 +25,9 @@
|
|||
<ul>
|
||||
{{$m := .recipe.Metadata}}
|
||||
{{$nameKey := .nameKey}}
|
||||
{{$urlKey := .urlKey}}
|
||||
{{range $k := sortedMetadataKeys $m}}
|
||||
{{if ne $k $nameKey}}
|
||||
{{if and (ne $k $nameKey) (ne $k $urlKey)}}
|
||||
<li><em>{{$k}}:</em> {{index $m $k}}</li>
|
||||
{{end}}
|
||||
{{end}}
|
||||
|
|
Loading…
Reference in a new issue