12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>文章教程-帮助中心-星优办公软件</title>
- @include('home.http.common.head')
- </head>
- <body>
- <div class="header">
- @include('home.http.common.header')
- </div>
- <div style="height: 68px;"></div>
- <div id="app">
- <!--- 解决方案 --->
- <div class="index-about" style="padding-top: 40px;">
- <div class="width-1200">
- <div class="flex-start">
- <div class="about-list">
- @foreach ($list as $item)
- <div class="about-item">
- <div class="i-time">
- <a href="{{ url('/news/detail/' . $item->mid) }}">
- @if ($item->logo)
- <img src="{{ $item->logo }}" class="new-img" />
- @else
- <img src="/static/images/about-img2.jpg" class="new-img" />
- @endif
- </a>
- </div>
- <div class="i-content">
- <a href="{{ url('/news/detail/' . $item->mid) }}">
- <p class="i-title overflow">{{ $item->title }}</p>
- <p class="i-desc more-overflow">{{ $item->introduction }}</p>
- </a>
- </div>
- </div>
- @endforeach
- </div>
- <div class="about-detail">
- <div class="about-area">
- <div class="about-title">文章分类</div>
- @foreach ($category as $item)
- <div class="news-item">
- <a href="{{ url('/news/category/' . $item->mid) }}"
- target="_blank">{{ $item->name }}</a>
- </div>
- @endforeach
- </div>
- </div>
- </div>
- </div>
- </div>
- @include('home.http.common.footer')
- </div>
- </body>
- </html>
|