Files
gitea-custom/templates/home.tmpl
Francesco Siddi 564a8df61c Create card components and add them to dashboard
Refactor the Releases, Modules and Projects cards into reusable
templates. Now they are used in the non-logged-in landing homepage
and in the logged-in dashboard.
2023-02-02 13:06:08 +01:00

95 lines
3.1 KiB
Cheetah

{{template "base/head" .}}
<div class="page-content home">
<div class="ui stackable middle very relaxed page grid">
<div class="sixteen wide aligned column">
<div class="hero">
<h2 class="ui header title">
{{AppName}}
</h2>
<p>
Welcome to the Blender Projects portal!
This is where all the official initiatives are coordinated and managed.
Read on to find out how to get involved, report bugs, see what's happening,
and discover resources and documentation.
</p>
</div>
<div class="ui stackable two column grid">
<div class="column">
{{template "blender_components/card_releases" .}}
{{template "blender_components/card_projects" .}}
</div>
<div class="column">
{{template "blender_components/card_modules" .}}
</div>
</div>
<h2 class="ui header title">Featured Repositories</h2>
<p>The portal hosts more that just the Blender sources, bug and patch tracker. Explore the other repositories and get involved!</p>
<div class="ui stackable three column grid">
<div class="column">
<div class="ui card">
<a href="blender/blender" class="image">
<img src="/assets/img/thumb_blender.jpg">
</a>
<div class="content">
<a class="header">Blender</a>
<div class="description">
<p>The official repo of the Blender 3D content creation suite.</p>
</div>
</div>
<!--<div class="extra content">
<span class="right floated">
<a>Browse repo...</a>
</span>
</div>-->
</div>
</div>
<div class="column">
<div class="ui card">
<a href="blender/documentation" class="image">
<img src="/assets/img/thumb_manual.jpg">
</a>
<div class="content">
<a class="header">User Manual</a>
<div class="description">
<p>The official Blender user manual, with references and examples.</p>
</div>
</div>
<!--<div class="extra content">
<span class="right floated">
<a>Browse repo...</a>
</span>
</div>-->
</div>
</div>
<div class="column">
<div class="ui card">
<a href="studio/flamenco" class="image">
<img src="/assets/img/thumb_flamenco.jpg">
</a>
<div class="content">
<a class="header">Flamenco</a>
<div class="description">
<p>Free & Open Source Render Management.</p>
</div>
</div>
<!--<div class="extra content">
<span class="right floated">
<a>Browse repo...</a>
</span>
</div>-->
</div>
</div>
</div>
</div>
</div>
</div>
{{template "base/footer" .}}