mirror of
https://github.com/lempamo/Project-Unite.git
synced 2025-02-02 04:57:35 +00:00
fix font bug
This commit is contained in:
parent
60d325012a
commit
e84b80a226
1 changed files with 2 additions and 2 deletions
|
@ -38,7 +38,7 @@
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-lg-6">
|
<div class="col-lg-6">
|
||||||
<h2><span class="glyphicon glyphicon-star">Latest Stable Release</span></h2>
|
<h2><span class="glyphicon glyphicon-star"></span> Latest Stable Release</h2>
|
||||||
@{
|
@{
|
||||||
var release = db.Downloads.Where(x => x.IsStable && x.Obsolete == false).OrderByDescending(x => x.PostDate).FirstOrDefault();
|
var release = db.Downloads.Where(x => x.IsStable && x.Obsolete == false).OrderByDescending(x => x.PostDate).FirstOrDefault();
|
||||||
if (release == null)
|
if (release == null)
|
||||||
|
@ -56,7 +56,7 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="col-lg-6">
|
<div class="col-lg-6">
|
||||||
<h2><span class="glyphicon glyphicon-star-empty">Latest Untable Release</span></h2>
|
<h2><span class="glyphicon glyphicon-star-empty"></span> Latest Untable Release</h2>
|
||||||
@{
|
@{
|
||||||
var urelease = db.Downloads.Where(x => x.IsStable == false && x.Obsolete == false).OrderByDescending(x => x.PostDate).FirstOrDefault();
|
var urelease = db.Downloads.Where(x => x.IsStable == false && x.Obsolete == false).OrderByDescending(x => x.PostDate).FirstOrDefault();
|
||||||
if (urelease == null)
|
if (urelease == null)
|
||||||
|
|
Loading…
Add table
Reference in a new issue