mirror of https://github.com/abpframework/abp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
578 B
23 lines
578 B
@page
|
|
@model VoloDocs.Web.Pages.IndexModel
|
|
@{
|
|
}
|
|
|
|
@if (!Model.Projects.Any())
|
|
{
|
|
<abp-alert alert-type="Warning">
|
|
<strong>No projects found!</strong><br />
|
|
See <a href=" https://docs.abp.io/en/abp/latest/Modules/Docs">documentation</a> to see how you can create a new one.
|
|
</abp-alert>
|
|
}
|
|
else
|
|
{
|
|
<h1>Projects</h1>
|
|
|
|
<abp-list-group class="mt-5">
|
|
@foreach (var project in Model.Projects)
|
|
{
|
|
<abp-list-group-item href="@Model.GetUrlForProject(project)">@project.Name</abp-list-group-item>
|
|
}
|
|
</abp-list-group>
|
|
} |