Skip to content

Commit 2df6c18

Browse files
committed
Revised About page.
1 parent 2d0a436 commit 2df6c18

File tree

1 file changed

+63
-3
lines changed
  • src/AbpCompanyName.AbpProjectName.WebMpa/Views/About

1 file changed

+63
-3
lines changed

src/AbpCompanyName.AbpProjectName.WebMpa/Views/About/Index.cshtml

Lines changed: 63 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,67 @@
22
ViewBag.ActiveMenu = "About"; //The menu item will be active for this page.
33
}
44
<div>
5-
<h1><img src="~/images/abp-logo.png" style="padding-right: 10px;" />@string.Format(L("AboutFormat"), "ASP.NET Boilerplate")</h1>
6-
<p>@Html.Raw(L("About_AspNetBoilerplateDescription"))</p>
7-
<p>@L("ForMoreInformation"): <a href="http://www.aspnetboilerplate.com"><strong>aspnetboilerplate.com</strong></a>.</p>
5+
<div class="row">
6+
<div class="col-md-12">
7+
<h3>About This Template</h3>
8+
9+
<p>
10+
This is a simple startup template based on ASP.NET Boilerplate framework and module-zero.
11+
If you need an enterprise startup template, check <a href="http://aspnetzero.com?ref=abptmpl" target="_blank">ASP.NET ZERO</a>.
12+
</p>
13+
14+
<h3 id="DocIntro">What is Module Zero?</h3>
15+
16+
<p>
17+
ASP.NET Boilerplate framework is designed to be independent of any database
18+
schema and to be as generic as possible. Therefore, It leaves some concepts
19+
<strong>abstract</strong> and <strong>optional</strong> (like audit logging, session management and authorization)
20+
which requires some <strong>data store</strong>.
21+
</p>
22+
<p>
23+
<strong>Module Zero </strong>implements all fundamental concepts of ASP.NET
24+
Boilerplate framework such as <a href="http://www.aspnetboilerplate.com/Pages/Documents/Zero/Tenant-Management">tenant management</a> (<strong>multi-tenancy</strong>),
25+
<a href="http://www.aspnetboilerplate.com/Pages/Documents/Zero/Role-Management">
26+
role management
27+
</a>, <a href="http://www.aspnetboilerplate.com/Pages/Documents/Zero/User-Management">user management</a>, <a href="http://www.aspnetboilerplate.com/Pages/Documents/Abp-Session">session</a>,
28+
<a href="http://www.aspnetboilerplate.com/Pages/Documents/Authorization">authorization</a> (<a href="http://www.aspnetboilerplate.com/Pages/Documents/Zero/Permission-Management">
29+
permission management
30+
</a>),
31+
<a href="http://www.aspnetboilerplate.com/Pages/Documents/Setting-Management">setting management</a>, <a href="http://www.aspnetboilerplate.com/Pages/Documents/Zero/Language-Management">
32+
language management
33+
</a>, <a href="http://www.aspnetboilerplate.com/Pages/Documents/Audit-Logging">audit logging</a>
34+
and so on.
35+
</p>
36+
<p>
37+
Module-Zero defines entities and implements <strong>domain logic</strong>
38+
(domain layer) and leaves application and presentation layers to the
39+
application.
40+
</p>
41+
42+
<h4>Based on Microsoft ASP.NET Identity Framework</h4>
43+
44+
<p>
45+
Module Zero is based on Microsoft's
46+
<a href="http://www.asp.net/identity" target="_blank">ASP.NET Identity Framework</a>.
47+
It extends user and role managers and implements user and role stores using generic repositories.
48+
It supports any ORM that can be used with ASP.NET Boilerplate
49+
(like Entity Framework and NHibernate). While module zero extends Identity Framework, it has many unique features.
50+
</p>
51+
52+
<h3>Documentation</h3>
53+
54+
<p>See <a href="http://www.aspnetboilerplate.com/Pages/Documents">documentation</a> for ASP.NET Boilerplate framework and module-zero.</p>
55+
56+
<h3>Source code</h3>
57+
58+
<p>
59+
Module-Zero source code is seperated from ASP.NET Boilerplate and hosted on
60+
<a href="https://github.com/aspnetboilerplate/module-zero" target="_blank">https://github.com/aspnetboilerplate/module-zero</a>.
61+
It's distributed on <a href="http://www.aspnetboilerplate.com/Pages/Documents/Zero/Nuget-Packages">nuget</a> as
62+
the framework.
63+
</p>
64+
65+
</div>
66+
67+
</div>
868
</div>

0 commit comments

Comments
 (0)