mirror of
https://gitea.com/gitea/theme.git
synced 2026-05-04 21:39:54 +08:00
NLnet is sponsoring Gitea development by funding developers to work on specific features. The application and the allocation of this funding was [discussed on the Gitea forum](https://discourse.gitea.io/t/nlnet-grant-application-for-federation-deadline-october-1st-2021/4073) from the start. Co-authored-by: Loïc Dachary <loic@dachary.org> Reviewed-on: https://gitea.com/gitea/theme/pulls/108 Reviewed-by: 6543 <6543@obermui.de> Reviewed-by: Gusted <williamzijl7@hotmail.com> Co-authored-by: dachary <dachary@noreply.gitea.io> Co-committed-by: dachary <dachary@noreply.gitea.io>
83 lines
3.0 KiB
HTML
83 lines
3.0 KiB
HTML
{{ partial "header.html" . }}
|
|
|
|
<section class="hero is-primary homepage-hero">
|
|
<!-- Hero head: will stick at the top -->
|
|
<div class="hero-head">
|
|
{{ partial "navbar.html" . }}
|
|
</div>
|
|
<!-- Hero content: will be in the middle -->
|
|
<div class="hero-body">
|
|
<div class="container has-text-centered">
|
|
{{ .Content }}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="hero-foot">
|
|
<img src="{{ .Site.BaseURL }}images/screenshot.png"/>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="hero is-link feature-shoutout">
|
|
<div class="hero-body">
|
|
<div class="container">
|
|
<div class="columns">
|
|
{{ $pag := .Paginate (where (where .Site.Pages "Type" "features") "Title" "!=" "Features") }}
|
|
{{ range .Paginator.Pages }}
|
|
{{ if eq .Section "features" }}
|
|
<div class="column">
|
|
{{ .Content }}
|
|
</div>
|
|
{{ end }}
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="hero feature-shoutout" style="background-color: #fafafa;">
|
|
<div class="hero-body">
|
|
<div class="container has-text-centered">
|
|
<h2 class="subtitle is-2">Sponsors</h2>
|
|
<div class="columns" style="align-items: center;justify-content: center;margin-top:15px;">
|
|
<div class="column">
|
|
<a href="http://inblockchain.com"><img style="height: 100px" src="/images/inblockchain.png" alt="INBlockchain"></a>
|
|
</div>
|
|
<div class="column">
|
|
<a href="https://metal.equinix.com"><img style="height: 100px" src="/images/EM-Standard-Color.png" alt="Equinix Metal is an on-demand bare metal service from Equinix."></a>
|
|
</div>
|
|
</div>
|
|
<div class="columns" style="align-items: center;justify-content: center;margin-top:15px;">
|
|
<div class="column">
|
|
<a href="https://www.twosigma.com"><img src="/images/twosigma.svg" style="vertical-align: top;margin-top: 16px;" alt="Two Sigma"></a>
|
|
</div>
|
|
<div class="column">
|
|
<a href="https://allspice.io"><img src="/images/allspice.svg" style="height:100px;" alt="Allspice"></a>
|
|
</div>
|
|
</div>
|
|
<div class="columns" style="align-items: center;justify-content: center;margin-top:15px;">
|
|
<div class="column">
|
|
<a href="https://soebes.io/"><img src="/images/soebes.gif" style="height:100px;" alt="SoEBeS"></a>
|
|
</div>
|
|
<div class="column">
|
|
<a href="https://towhee.io/"><img src="/images/towhee.png" style="height:100px" alt="Towhee"></a>
|
|
</div>
|
|
</div>
|
|
<div class="columns" style="align-items: center;justify-content: center;margin-top:15px;">
|
|
<div class="column">
|
|
<a href="https://opencollective.com/gitea"><img src="/images/opencollective.svg" style="height:100px" alt="Open Collective"></a>
|
|
</div>
|
|
<div class="column">
|
|
<a href="https://hostea.org/blog/"><img src="/images/hostea.png" style="height:100px" alt="Hostea"></a>
|
|
</div>
|
|
</div>
|
|
<div class="columns" style="align-items: center;justify-content: center;margin-top:15px;">
|
|
<div class="column">
|
|
<a href="https://nlnet.nl/project/Gitea/"><img src="/images/nlnet.png" style="height:100px" alt="NLnet"></a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
{{ partial "footer.html" . }}
|