-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathlist.blade.php
More file actions
94 lines (90 loc) · 4.38 KB
/
list.blade.php
File metadata and controls
94 lines (90 loc) · 4.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
@extends('next.layouts.app')
@section('content')
@parent
<div id="content" class="content">
<div id="posts" class="posts-expand">
<div class="post-block page">
<header class="post-header">
<h1 class="post-title" style="margin-left: 46%" itemprop="name headline">分类</h1>
</header>
<div class="post-body">
<div class="category-all-page">
<div class="category-all-title">
目前共计 {{$total}} 个分类
</div>
<div class="category-all">
<ul class="category-list">
@if($cates)
@foreach($cates as $k => $cate)
<li class="category-list-item"><a class="category-list-link"
href="/cates/{{$cate->id}}">{{$cate->name}}</a><span
class="category-list-count">{{$cate->num}}</span></li>
@endforeach
@endif
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
@endsection
@section('sidebar')
@parent
<aside id="sidebar" class="sidebar">
<div class="sidebar-inner">
<section class="site-overview-wrap sidebar-panel sidebar-panel-active">
<div class="site-overview">
<div class="site-author motion-element" itemprop="author" itemscope=""
itemtype="">
<img class="site-author-image" itemprop="image" src="/next/images/avatar.jpg"
alt="MrCoder">
<p class="site-author-name" itemprop="name">MrCoder</p>
<p class="site-description motion-element"
itemprop="description">@yield('title', setting('web_name', 'Laravel'))</p>
</div>
<nav class="site-state motion-element">
<div class="site-state-item site-state-posts">
<a href="/">
<span class="site-state-item-count">{{$articleCount}}</span>
<span class="site-state-item-name">日志</span></a>
</div>
<div class="site-state-item site-state-categories">
<a href="/cates">
<span class="site-state-item-count">{{$catesCount}}</span>
<span class="site-state-item-name">分类</span></a>
</div>
<div class="site-state-item site-state-tags">
<a href="/tags">
<span class="site-state-item-count">{{$tagsCount}}</span>
<span class="site-state-item-name">标签</span></a>
</div>
</nav>
{{--<div class="feed-link motion-element">--}}
{{--<a href="/atom.xml" rel="alternate">--}}
{{--<i class="fa fa-rss"></i>RSS</a>--}}
{{--</div>--}}
<div class="links-of-author motion-element">
<span class="links-of-author-item">
<a href="https://frcoderblog.github.io" target="_blank" title="GitHub">
<i class="fa fa-fw fa-github"></i>GitHub</a>
</span>
<span class="links-of-author-item">
<a href="http://www.wrsee.com" target="_blank" title="Wrsee">
<i class="fa fa-fw fa-code"></i>Wrsee</a>
</span>
<span class="links-of-author-item">
<a href="http://frider.coding.me" target="_blank" title="Coding">
<i class="fa fa-fw fa-terminal"></i>Coding</a>
</span>
</div>
</div>
</section>
</div>
</aside>
@endsection
@push('importscripts')
@endpush
@section('diyscript')
@parent
@endsection