Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HiveStatistics/sources/HeuristicLab.Services.Hive.Statistics/3.3/Views/Home/About.cshtml @ 10888

Last change on this file since 10888 was 9604, checked in by pfleck, 11 years ago

#2063:
Set up basic webpage layout based on WebApplication branch.
Added Asp.Net MVC packages and some helper packages.
Implemented login.

File size: 727 bytes
Line 
1@{
2    ViewBag.Title = "About";
3}
4
5<hgroup class="title">
6    <h1>@ViewBag.Title.</h1>
7    <h2>@ViewBag.Message</h2>
8</hgroup>
9
10<article>
11    <p>
12        Use this area to provide additional information.
13    </p>
14
15    <p>
16        Use this area to provide additional information.
17    </p>
18
19    <p>
20        Use this area to provide additional information.
21    </p>
22</article>
23
24<aside>
25    <h3>Aside Title</h3>
26    <p>
27        Use this area to provide additional information.
28    </p>
29    <ul>
30        <li>@Html.ActionLink("Home", "Index", "Home")</li>
31        <li>@Html.ActionLink("About", "About", "Home")</li>
32        <li>@Html.ActionLink("Contact", "Contact", "Home")</li>
33    </ul>
34</aside>
Note: See TracBrowser for help on using the repository browser.