1
0
Fork 0

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
commit 564a8df61c
6 changed files with 133 additions and 98 deletions

View file

@ -0,0 +1,21 @@
<div class="ui card">
<div class="content">
<span class="header">Release Status</span>
<div class="meta">
<span class="date">Current and upcoming versions</span>
</div>
<div class="description">
<ul>
<li><a href="blender/blender/milestone/1">Blender 3.5</a> — Bcon2: Improve and stabilize</li>
<li><a href="blender/blender/milestone/2">Blender 3.4</a> — Released on December 7, 2022</li>
<li><a href="blender/blender/milestone/3">Blender 3.3 LTS</a> — Released on September 7, 2022</li>
<li><a href="blender/blender/milestone/4">Blender 2.93 LTS</a> — Released on June 2, 2021</li>
</ul>
</div>
</div>
<div class="extra content">
<span class="right floated">
<a href="https://wiki.blender.org/wiki/Process/Release_Cycle">More info on the release cycle...</a>
</span>
</div>
</div>