35 lines
1.3 KiB
PHP
35 lines
1.3 KiB
PHP
@extends('layouts.app')
|
|
|
|
@section('title', $parent->title)
|
|
|
|
@section('content')
|
|
<!-- 面包屑导航 -->
|
|
@include('category.navigation')
|
|
|
|
<!-- 内容 -->
|
|
<div class="container">
|
|
<div class="row">
|
|
<!-- 左侧导航部分 -->
|
|
@include('category.left')
|
|
<!-- 右侧内容部分 -->
|
|
<div class="col-xs-12 col-md-9">
|
|
<div class="briefVideo">
|
|
<div class="briefAlbum-title" style="margin-bottom: 10px"><span>四十年所庆</span></div>
|
|
<div class="briefVideo-cont">
|
|
<div class="briefVideo-tips">
|
|
<span>四十周年所庆宣传片</span>
|
|
</div>
|
|
<div class="briefVideo-video">
|
|
<video width="100%" height="100%" style="object-fit:fill" controls
|
|
src="{{ getVideoByCate(15,'link_url') }}"
|
|
poster="{{ getVideoByCate(15,'cover_url') }}"
|
|
>
|
|
</video>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|