Files
Orchard/src/Orchard.Web/Modules/Orchard.Dashboards/Views/StaticDashboard.cshtml
Benedek Farkas 78ee4efb4f
Some checks failed
Compile / Compile .NET solution (push) Has been cancelled
Compile / Compile Client-side Assets (push) Has been cancelled
SpecFlow Tests / Define Strategy Matrix (push) Has been cancelled
SpecFlow Tests / SpecFlow Tests (push) Has been cancelled
#8850: Release 1.10.4 (#8851)
* Updating version numbers to 1.10.4

* Updating Advisory Dashboard Widget iframe URL

* Dashboards: Removing empty Scripts folder

* Dashboards: Updating the Advisory element's iframe URL

* Updating solution with GHA workflow files
2025-10-10 18:49:26 +02:00

37 lines
2.7 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@{ Layout.Title = T("Welcome to Orchard").ToString(); }
<section class="dashboard group">
<div class="help-item">
<h2 class="start">@T("Get up and running")</h2>
<p>@T("Start by exploring the menu on the left and familiarize yourself with Orchard. As for the basics, we suggest <a href=\"{0}\">changing the theme</a>, <a href=\"{1}\">adding some pages</a>, <a href=\"{2}\">setup up a blog</a>, and <a href=\"{3}\">configuring basic settings</a>.",
Url.Action("Index", "Admin", new { area = "Orchard.Themes" }),
Url.Action("Create", "Admin", new { area = "Contents", id = "Page" }),
Url.Action("Create", "BlogAdmin", new { area = "Orchard.Blogs" }),
Url.Action("Index", "Admin", new { area = "Settings", groupInfoId = "Index" }))</p>
</div>
<div class="help-item">
<h2 class="gallery">@T("Get more goodies")</h2>
<p>@T("Change the way your site works and looks with <a href=\"{0}\">themes</a> and <a href=\"{1}\">modules</a>. Theres plenty to choose from in the <a href=\"http://gallery.orchardproject.net/\">Orchard Gallery</a>. Were always adding things, so be sure to check back often to see whats new.",
Url.Action("Themes", "Gallery", new { area = "Orchard.Packaging" }),
Url.Action("Modules", "Gallery", new { area = "Orchard.Packaging" }))
</p>
</div>
<div class="help-item">
<h2 class="docs">@T("Read the Docs")</h2>
<p>@T("Are you ready to go deeper and become an Orchard expert? Take a look at the <a href=\"http://docs.orchardproject.net\">Orchard Documentation</a> to learn about how everything connects together and what makes Orchard tick.")</p>
</div>
<div class="help-item">
<h2 class="friends">@T("Make friends")</h2>
<p>@T("Find friends that share your interest of Orchard. There are a couple ways that you can <a href=\"http://orchardproject.net/discussions\">discuss and get connected</a> to the project including mailing lists, forums and IRC.")</p>
</div>
<div class="help-item">
<h2 class="contribute">@T("Contribute back")</h2>
<p>@T("Help grow Orchard. We encourage contributions of all sorts, including code submissions, documentation, translations, feature recommendations, and more. Here are some ways to <a href=\"http://orchardproject.net/contribution\">give back to the project</a>.")</p>
</div>
<div class="help-item">
<h2 class="advisory">@T("Stay up to date")</h2>
<iframe id="advisory" src="https://orchardcore.net/advisory" frameborder="0" height="100%" width="100%" scrolling="no">
<p>@T("Your browser does not support iframes. You can't see advisory messages.")</p>
</iframe>
</div>
</section>