From 60d325012ab2f00203bf5a1cd8e9f9e8f3592982 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 18 Apr 2017 15:51:59 -0400 Subject: [PATCH] Latest releases. --- Project-Unite/Views/Home/Index.cshtml | 48 ++++++++++++++++++++++++--- 1 file changed, 44 insertions(+), 4 deletions(-) diff --git a/Project-Unite/Views/Home/Index.cshtml b/Project-Unite/Views/Home/Index.cshtml index 86be3cf..d4a811d 100644 --- a/Project-Unite/Views/Home/Index.cshtml +++ b/Project-Unite/Views/Home/Index.cshtml @@ -10,26 +10,66 @@
-
+

Shift it your way.

ShiftOS is one of the most customizable operating systems ever created by mankind, and with that said, it is the most easy to use.

It has never been easier to create stylish, amazing user experiences using ShiftOS, and if you're still not inspired, have a look at what other Shifters have made!

Take me to the Skin Repo!
-
+

We don't make updates. You do.

Have you ever been in the middle of work, or gaming, and all of the sudden your computer screamed at you saying it's about to update?

That won't happen with ShiftOS. You upgrade exactly what features you want. But.... there's a price to pay...

-
+

Take it even further.

Know Lua or C#? We've got ya covered. ShiftOS is an amazing development environment. Not only can you customize it to look however you want, but you can code your own features and applications. Then, sell them to other Shifters, and pocket the cash.

Or, if you want to go even further, we're open-source! We accept contributions.

-
+

We're a digital society, and we're also a community.

ShiftOS is more than just an operating system. You'll meet many interesting characters. ...We can't tell you much about who you'll meet, but if you want to get a headstart, join the community! It's one click away. Or maybe two.

Register a ShiftOS Account Join the Discord
+
+ +
+ +
+
+

Latest Stable Release

+ @{ + var release = db.Downloads.Where(x => x.IsStable && x.Obsolete == false).OrderByDescending(x => x.PostDate).FirstOrDefault(); + if (release == null) + { +

Sadly, no stable releases have been released that are not marked as obsolete. Please stay with us!

+ } + else + { +

@release.Name

+

Released by @Html.UserLink(release.ReleasedBy) on @release.PostDate

+

@Html.Markdown(release.Changelog)

+ View more info. + } + } +
+ +
+

Latest Untable Release

+ @{ + var urelease = db.Downloads.Where(x => x.IsStable == false && x.Obsolete == false).OrderByDescending(x => x.PostDate).FirstOrDefault(); + if (urelease == null) + { +

Sadly, no unstable releases have been released that are not marked as obsolete. Please stay with us!

+ } + else + { +

@urelease.Name

+

Released by @Html.UserLink(urelease.ReleasedBy) on @urelease.PostDate

+

@Html.Markdown(urelease.Changelog)

+ View more info. + } + } +
\ No newline at end of file