github.com/goreleaser/goreleaser@v1.25.1/www/docs/overrides/home.html (about) 1 {% extends "main.html" %} 2 {% block tabs %} 3 {{ super() }} 4 <style> 5 :root { 6 --goreleaser-primary-color: #3b5672; 7 } 8 9 .md-header { 10 position: initial 11 } 12 13 .md-main__inner { 14 margin: 0 15 } 16 17 .md-content { 18 display: none 19 } 20 21 [data-md-color-scheme=slate] .tx-container { 22 padding-top: 1rem; 23 background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1123 258'><path d='M1124,2c0,0 0,256 0,256l-1125,0l0,-48c0,0 16,5 55,5c116,0 197,-92 325,-92c121,0 114,46 254,46c140,0 214,-167 572,-166Z' style='fill: hsla(232, 15%, 21%, 1)'/></svg>") no-repeat bottom, linear-gradient(to bottom, var(--md-primary-fg-color), var(--goreleaser-primary-color) 99%, #fff 99%) 24 } 25 26 .tx-container { 27 padding-top: 1rem; 28 background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1123 258'><path d='M1124,2c0,0 0,256 0,256l-1125,0l0,-48c0,0 16,5 55,5c116,0 197,-92 325,-92c121,0 114,46 254,46c140,0 214,-167 572,-166Z' style='fill: white' /></svg>") no-repeat bottom, linear-gradient(to bottom, var(--md-primary-fg-color), var(--goreleaser-primary-color) 99%, #fff 99%) 29 } 30 31 .tx-hero { 32 margin: 0 .8rem; 33 color: var(--md-primary-bg-color) 34 } 35 36 .tx-hero h1 { 37 margin-bottom: 1rem; 38 color: currentColor; 39 font-weight: 700 40 } 41 42 .tx-hero__content { 43 padding-bottom: 6rem 44 } 45 46 .tx-hero .md-button { 47 margin-top: .5rem; 48 margin-right: .5rem; 49 color: var(--md-primary-bg-color) 50 } 51 52 .tx-hero .md-button--primary { 53 background-color: var(--md-primary-bg-color); 54 color: var(--goreleaser-primary-color); 55 border-color: var(--md-primary-bg-color) 56 } 57 58 .tx-hero .md-button:focus, 59 .tx-hero .md-button:hover { 60 background-color: var(--md-accent-fg-color); 61 color: var(--md-default-bg-color); 62 border-color: var(--md-accent-fg-color) 63 } 64 65 @media screen and (max-width:70em) { 66 .tx-hero h1 { 67 font-size: 1.4rem 68 } 69 70 .tx-hero__image { 71 text-align: center; 72 } 73 74 .tx-hero__image img { 75 max-width: 10rem; 76 } 77 } 78 79 @media screen and (min-width:70em) { 80 .md-sidebar--secondary { 81 display: none 82 } 83 84 .tx-hero { 85 display: flex; 86 align-items: stretch 87 } 88 89 .tx-hero__content { 90 max-width: 30rem; 91 margin-top: 3.5rem; 92 padding-bottom: 14vw 93 } 94 95 .tx-hero__image { 96 order: 1; 97 margin-left: auto; 98 margin-top: 3.5rem; 99 } 100 101 .tx-hero__image img { 102 max-width: 15rem; 103 } 104 } 105 106 @media screen and (min-width:76.25em) { 107 .md-sidebar--primary { 108 display: none 109 } 110 111 .tx-hero__image { 112 margin-left: auto; 113 } 114 115 .tx-hero__image img { 116 max-width: 20rem; 117 } 118 } 119 120 </style> 121 <section class="tx-container"> 122 <div class="md-grid md-typeset"> 123 <div class="tx-hero"> 124 <div class="tx-hero__image"> 125 <img src="static/logo.png" alt="" draggable="false"> 126 </div> 127 <div class="tx-hero__content"> 128 <h1>GoReleaser</h1> 129 <h2>Release Go projects as fast and easily as possible!</h2> 130 <p>With GoReleaser, you can:</p> 131 <ul> 132 <li>Cross-compile your Go project</li> 133 <li>Release to GitHub, GitLab and Gitea</li> 134 <li>Create nightly builds</li> 135 <li>Create Docker images and manifests</li> 136 <li>Create Linux packages and Homebrew taps</li> 137 <li>Sign artifacts, checksums and container images</li> 138 <li>Announce new releases on Twitter, Slack, Discord and others</li> 139 <li>Generate SBOMs (Software Bill of Materials) for binaries and container images</li> 140 <li>... and much more!</li> 141 </ul> 142 <a href="{{ page.next_page.url | url }}" title="{{ page.next_page.title | striptags }}" 143 class="md-button md-button--primary"> 144 Get started 145 </a> 146 <a href="/pro/" title="{{ lang.t('source.link.title') }}" class="md-button"> 147 Get Pro 148 </a> 149 </div> 150 </div> 151 </div> 152 </section> 153 <a style="display: none;" rel="me" href="https://fosstodon.org/@goreleaser"></a> 154 {% endblock %} 155 {% block content %}{% endblock %} 156 {% block footer %}{% endblock %}