• This project
    • Loading...
  • Sign in

Зуев Егор / wiki.dev

Logo belkanton
Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • wiki.dev
  • resources
  • views
  • pages
  • detailed-listing.blade.php
  • Dan Brown's avatar
    Added recently created & updated page listings · 8eb29609 ...
    8eb29609
    Closes #46.
    Dan Brown authored 2016-02-20 18:51:01 +0000
detailed-listing.blade.php 412 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
@extends('base')

@section('content')

    <div class="container">
        <div class="row">

            <div class="col-sm-7">
                <h1>{{ $title }}</h1>
                @include('partials/entity-list', ['entities' => $pages, 'style' => 'detailed'])
                {!! $pages->links() !!}
            </div>

            <div class="col-sm-4 col-sm-offset-1"></div>

        </div>
    </div>
@stop