1234567891011121314151617181920212223242526272829303132333435 |
-
- @model NavigationModel
- @section style{
- <link rel="stylesheet" href="@ConfigHelper.GetCDNPrefix()/assets/css/map.css">
- <style>
- @@media(min-width:768px) {
- .m-header {
- height: 84px;
- display: block !important;
- }
- }
- </style>
- }
- <div class="container">
- <h2 class="title">网站地图</h2>
- @foreach (var item in Model.Children)
- {
- <div class="con">
- <h4><a href="@(string.IsNullOrWhiteSpace(item.Url)?"javascript:void(0);":item.Url)" target="_blank">@item.Name</a></h4>
- @if (item.Children.Count > 0)
- {
- <div class="row">
- @foreach (var child in item.Children)
- {
- <div class="col-sm-4">
- <a href="@(string.IsNullOrWhiteSpace(child.Url)?"javascript:void(0);":child.Url)">@child.Name</a>
- </div>
- }
- </div>
- }
- </div>
- }
- </div>
- <div class="foot-h"></div>
|