OpenGraph pro jednotlivé recepty
All checks were successful
continuous-integration/drone Build is passing
All checks were successful
continuous-integration/drone Build is passing
This commit is contained in:
parent
21bbc12ffc
commit
5cdc5cb846
@ -7,6 +7,7 @@
|
||||
<title>{% block title %}{{ config.title }}{% endblock title %}</title>
|
||||
<link rel="stylesheet" href="{{ get_url(path="/style.css") }}" type="text/css">
|
||||
<link rel="stylesheet" href="{{ get_url(path="/icons.css") }}" type="text/css">
|
||||
{% block head_extra %}{% endblock head_extra %}
|
||||
</head>
|
||||
<body>
|
||||
<nav>
|
||||
|
@ -10,6 +10,14 @@
|
||||
{% endif %}
|
||||
>
|
||||
<a href="{{ recipe.permalink }}">
|
||||
<div class="image" style="background-image: url('{{ macro::recipe_preview_image(recipe=recipe) }}')"></div>
|
||||
<div class="title">{{ recipe.title }}</div>
|
||||
{% if recipe.date %}<span class="date">{{ recipe.date | date(format="%d.%m.%Y") }}</span>{% endif %}
|
||||
</a>
|
||||
</article>
|
||||
{% endmacro print_recipe %}
|
||||
|
||||
{% macro recipe_preview_image(recipe) %}
|
||||
{% set_global image = "../static/temp.jpg" %}
|
||||
{% for asset in recipe.assets %}
|
||||
{% if asset is matching("[img.](jpg|png)$") %}
|
||||
@ -18,12 +26,8 @@
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
{% set image = resize_image(path=image, width=300, height=300, op="fill") %}
|
||||
<div class="image" style="background-image: url('{{ image.url }}')"></div>
|
||||
<div class="title">{{ recipe.title }}</div>
|
||||
{% if recipe.date %}<span class="date">{{ recipe.date | date(format="%d.%m.%Y") }}</span>{% endif %}
|
||||
</a>
|
||||
</article>
|
||||
{% endmacro print_recipe %}
|
||||
{{ image.url }}
|
||||
{% endmacro recipe_preview_image %}
|
||||
|
||||
{% macro pagination() %}
|
||||
{% if paginator.previous %}
|
||||
|
@ -1,6 +1,12 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block title %}{{ config.title }} — {{ page.title }}{% endblock title %}
|
||||
{% block head_extra %}
|
||||
<meta property="og:title" content="{{ page.title }}">
|
||||
<meta property="og:url" content="{{ config.base_url }}">
|
||||
<meta property="og:image" content="{{ macro::recipe_preview_image(recipe=page) }}">
|
||||
<meta property="og:type" content="article">
|
||||
{% endblock head_extra %}
|
||||
|
||||
{% block content %}
|
||||
<main class="recipe">
|
||||
|
Loading…
Reference in New Issue
Block a user