Replacing hardcoded links in the dashboard.

--HG--
branch : 1.x
This commit is contained in:
Andre Rodrigues
2011-04-06 12:39:09 -07:00
parent 8d1e7caa49
commit dbb4fbd13e

View File

@@ -5,24 +5,24 @@
<div class="help-item">
<h2 class="start">Get up and running.</h2>
<p>Start by exploring the menu on the left and familiarize yourself with Orchard.
As for the basics, we suggest <a href="Themes/">changing the theme</a>, <a href="Contents/Create/Page/">adding some pages</a>, <a href="Blogs/Create/">setup up a
blog</a>, and <a href="Settings/Index/">configuring basic settings.</a></p>
As for the basics, we suggest @Html.ActionLink(T("changing the theme").ToString(), "Index", "Admin", new { area = "Orchard.Themes" }, null), @Html.ActionLink(T("adding some pages").ToString(), "Create", "Admin", new { area = "Contents", id = "Page" }, null), @Html.ActionLink(T("setup up a blog").ToString(), "Create", "BlogAdmin", new { area = "Orchard.Blogs" }, null),
and @Html.ActionLink(T("configuring basic settings").ToString(), "Index", "Admin", new { area = "Settings", groupInfoId = "Index" }, null).</p>
</div>
<div class="help-item">
<h2 class="gallery">Get more goodies.</h2>
<p>Change the way your site works and looks with <a href="Packaging/Gallery/Themes/">themes</a> and <a href="Packaging/Gallery/Modules/">modules</a>. Theres plenty to choose from in the <a href="http://orchardproject.net/gallery" target="_blank">Orchard Gallery</a>. Were always adding things, so be sure to check back often to see whats new.</p>
<p>Change the way your site works and looks with @Html.ActionLink(T("themes").ToString(), "Themes", "Gallery", new { area = "Orchard.Packaging" }, null) and @Html.ActionLink(T("modules").ToString(), "Modules", "Gallery", new { area = "Orchard.Packaging" }, null). Theres plenty to choose from in the <a href="http://orchardproject.net/gallery" target="_blank">Orchard Gallery</a>. Were always adding things, so be sure to check back often to see whats new.</p>
</div>
<div class="help-item">
<h2 class="docs">Read the Docs.</h2>
<p>Are you ready to go deeper and become an Orchard expert? Take a look at the <a href="http://orchardproject.net/docs/" target="_blank">Orchard Documentation Wiki</a> to learn about how everything connects together and what makes Orchard tick.</p>
<p>Are you ready to go deeper and become an Orchard expert? Take a look at the <a href="http://orchardproject.net/docs/" target="_blank">Orchard Documentation Wiki</a> to learn about how everything connects together and what makes Orchard tick.</p>
</div>
<div class="help-item">
<h2 class="friends">Make friends.</h2>
<p>Find friends that share your interest of Orchard. There are a couple ways that you can <a href="http://orchardproject.net/discussions" target="_blank">discuss and get connected</a> to the project including mailing lists, forums and IRC.</p>
<p>Find friends that share your interest of Orchard. There are a couple ways that you can <a href="http://orchardproject.net/discussions" target="_blank">discuss and get connected</a> to the project including mailing lists, forums and IRC.</p>
</div>
<div class="help-item">
<h2 class="contribute">Contribute back.</h2>
<p>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" target="_blank">give back to the project</a>.</p>
<p>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" target="_blank">give back to the project</a>.</p>
</div>
</section>