mirror of
https://projects.blender.org/infrastructure/gitea-custom.git
synced 2025-01-21 14:12:28 -05:00
564a8df61c
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.
26 lines
760 B
Cheetah
26 lines
760 B
Cheetah
{{template "base/head" .}}
|
|
<div class="page-content dashboard feeds">
|
|
{{template "user/dashboard/navbar" .}}
|
|
<div class="ui container">
|
|
{{if not .Feeds}}
|
|
<div class="ui stackable two column grid">
|
|
<div class="column">
|
|
{{template "blender_components/card_projects" .}}
|
|
{{template "blender_components/card_releases" .}}
|
|
</div>
|
|
<div class="column">
|
|
{{template "blender_components/card_modules" .}}
|
|
</div>
|
|
</div>
|
|
{{end}}
|
|
{{template "base/alert" .}}
|
|
<div class="ui mobile reversed stackable grid">
|
|
<div class="ui container ten wide column">
|
|
{{template "user/heatmap" .}}
|
|
{{template "user/dashboard/feeds" .}}
|
|
</div>
|
|
{{template "user/dashboard/repolist" .}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{template "base/footer" .}}
|