Open Source Web Application Framework for ASP.NET Core
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
571 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://abp.io/docs/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>
}