Skip to content

Instantly share code, notes, and snippets.

@buiquangduc
Created January 24, 2018 09:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save buiquangduc/adbacfe83c872c35c57e97024d9fcb73 to your computer and use it in GitHub Desktop.
Save buiquangduc/adbacfe83c872c35c57e97024d9fcb73 to your computer and use it in GitHub Desktop.
Override archive page with Sage 9 template
@extends('layouts.app')
@section('content')
@include('partials.page-header')
This is a custom content for archive page.
@if (!have_posts())
<div class="alert alert-warning">
{{ __('Sorry, no results were found.', 'sage') }}
</div>
{!! get_search_form(false) !!}
@endif
@while (have_posts()) @php(the_post())
@include('partials.content-'.get_post_type())
@endwhile
{!! get_the_posts_navigation() !!}
@endsection
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment