diff options
| author | Michael <[email protected]> | 2017-04-18 15:54:18 -0400 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-04-18 15:54:18 -0400 |
| commit | e84b80a226763861f6222eded177befaaba86a8d (patch) | |
| tree | edbef0dc207022d280d536163dd8673de5e5dcde /Project-Unite | |
| parent | 60d325012ab2f00203bf5a1cd8e9f9e8f3592982 (diff) | |
| download | project-unite-e84b80a226763861f6222eded177befaaba86a8d.tar.gz project-unite-e84b80a226763861f6222eded177befaaba86a8d.tar.bz2 project-unite-e84b80a226763861f6222eded177befaaba86a8d.zip | |
fix font bug
Diffstat (limited to 'Project-Unite')
| -rw-r--r-- | Project-Unite/Views/Home/Index.cshtml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Project-Unite/Views/Home/Index.cshtml b/Project-Unite/Views/Home/Index.cshtml index d4a811d..3f8d815 100644 --- a/Project-Unite/Views/Home/Index.cshtml +++ b/Project-Unite/Views/Home/Index.cshtml @@ -38,7 +38,7 @@ <div class="row"> <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(); if (release == null) @@ -56,7 +56,7 @@ </div> <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(); if (urelease == null) |
