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.
This commit is contained in:
Francesco Siddi
2023-02-02 13:06:08 +01:00
parent bc327d7973
commit 564a8df61c
6 changed files with 133 additions and 98 deletions

View File

@@ -0,0 +1,20 @@
<div class="ui card">
<div class="content">
<span class="header">Ongoing Projects</span>
<div class="meta">
<span class="date">Focused activities to advance Blender</span>
</div>
<div class="description">
<ul>
<li>Animation 25 — Next generation animation system</li>
<li>Simulation Nodes — Everything with nodes</li>
<li>Brush Assets — The asset system and browser</li>
</ul>
</div>
</div>
<div class="extra content">
<span class="right floated">
<a>View all projects...</a>
</span>
</div>
</div>