mirror of https://github.com/fluxcd/flux2.git
commit
006c949941
Binary file not shown.
After Width: | Height: | Size: 56 KiB |
@ -0,0 +1,32 @@
|
|||||||
|
{% extends "base.html" %}
|
||||||
|
|
||||||
|
{% block extrahead %}
|
||||||
|
|
||||||
|
<meta property="og:url" content="{{ page.canonical_url }}">
|
||||||
|
{% if page and page.meta and page.meta.title %}
|
||||||
|
<meta property="og:title" content="{{ page.meta.title }}">
|
||||||
|
{% elif page and page.title and not page.is_homepage %}
|
||||||
|
<meta property="og:title" content="{{ page.title }} - {{ config.site_name }}">
|
||||||
|
{% else %}
|
||||||
|
<meta property="og:title" content="{{ config.site_name }}">
|
||||||
|
{% endif %}
|
||||||
|
<meta property="og:description" content="{{ config.site_description }}">
|
||||||
|
<meta property="og:image" content="https://toolkit.fluxcd.io/_files/toolkit-icon.png">
|
||||||
|
<meta property="og:image:alt" content="GitOps Toolkit">
|
||||||
|
<meta property="og:image:type" content="image/png">
|
||||||
|
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:site" content="@stefanprodan">
|
||||||
|
<meta name="twitter:creator" content="@stefanprodan">
|
||||||
|
{% if page and page.meta and page.meta.title %}
|
||||||
|
<meta property="twitter:title" content="{{ page.meta.title }}">
|
||||||
|
{% elif page and page.title and not page.is_homepage %}
|
||||||
|
<meta property="twitter:title" content="{{ page.title }} - {{ config.site_name }}">
|
||||||
|
{% else %}
|
||||||
|
<meta property="twitter:title" content="{{ config.site_name }}">
|
||||||
|
{% endif %}
|
||||||
|
<meta name="twitter:description" content="{{ config.site_description }}">
|
||||||
|
<meta name="twitter:image" content="https://toolkit.fluxcd.io/_files/toolkit-icon.png">
|
||||||
|
<meta name="twitter:image:alt" content="GitOps Toolkit">
|
||||||
|
|
||||||
|
{% endblock %}
|
Loading…
Reference in New Issue