github.com/goreleaser/goreleaser@v1.25.1/www/docs/overrides/main.html (about)

     1  {% extends "base.html" %}
     2  {% block extrahead %}
     3  {% set title = config.site_name %}
     4  {% if page and page.title and not page.is_homepage %}
     5  {% set title = config.site_name ~ " - " ~ page.title | striptags %}
     6  {% endif %}
     7  {% set image = config.site_url ~ '/static/card.png' %}
     8  <meta property="og:type" content="website">
     9  <meta property="og:title" content="{{ title }}">
    10  <meta property="og:description" content="{{ config.site_description }}">
    11  <meta property="og:url" content="{{ page.canonical_url }}">
    12  <meta property="og:image" content="{{ image }}">
    13  <meta property="og:image:type" content="image/png">
    14  <meta property="og:image:width" content="1200">
    15  <meta property="og:image:height" content="630">
    16  <meta name="twitter:card" content="summary_large_image">
    17  <meta name="twitter:site" content="@goreleaser">
    18  <meta name="twitter:creator" content="@goreleaser">
    19  <meta name="twitter:title" content="{{ title }}">
    20  <meta name="twitter:description" content="{{ config.site_description }}">
    21  <meta name="twitter:image" content="{{ image }}">
    22  {% endblock %}
    23  
    24  <!-- Announcement bar -->
    25  {% block announce %}
    26  	<p>
    27  		I work <strong>very hard</strong> to make GoReleaser better, and
    28  		can only continue to do so thanks to the support of people like you.
    29  	</p>
    30  	<p>
    31  		If you'd like to contribute, you can choose between
    32  		<a href="/sponsors">
    33  			<strong>sponsoring me</strong>
    34  		</a>,
    35  		or
    36  		<a href="/pro">
    37  			<strong>buying a Pro license</strong>
    38  		</a>
    39  		.
    40  	</p>
    41  	<p>
    42  		Thanks for your support 💜
    43  	</p>
    44  {% endblock %}