Initial commit to new repo
This commit is contained in:
parent
a267f9bfcc
commit
a5173c981b
292 changed files with 17472 additions and 0 deletions
30
resources/views/multipost.blade.php
Normal file
30
resources/views/multipost.blade.php
Normal file
|
@ -0,0 +1,30 @@
|
|||
@extends('master')
|
||||
|
||||
@section('title')
|
||||
Articles « Jonny Barnes
|
||||
@stop
|
||||
|
||||
@section('content')
|
||||
@if (count($data) == 0)
|
||||
<p>No articles exist for this time.</p>
|
||||
@endif
|
||||
@foreach ($data as $article)
|
||||
@if ($article['url'] != '')<article class="link h-entry">@else<article class="h-entry">@endif
|
||||
<header>
|
||||
<h1 class="p-name">
|
||||
<a href="@if($article['url'] == ''){{ $article['link'] }}@else{{ $article['url'] }}@endif">{{ $article['title'] }}</a>
|
||||
</h1>
|
||||
<span class="post-info">Posted <time class="dt-published" title="{{ $article['tooltip_time'] }}" datetime="{{ $article['w3c_time'] }}">{{ $article['human_time'] }}</time> - <a title="Permalink" href="{{ $article['link'] }}"><span class="permalink"><?php echo html_entity_decode('∞'); ?></span></a></span>
|
||||
</header>
|
||||
<div class="e-content">
|
||||
{!! $article['main'] !!}
|
||||
</div>
|
||||
</article>
|
||||
@endforeach
|
||||
{!! $data->render() !!}
|
||||
@stop
|
||||
|
||||
@section('scripts')
|
||||
<script src="{{ elixir('assets/js/prism.js') }}"></script>
|
||||
<link rel="stylesheet" href="{{ elixir('assets/css/prism.css') }}">
|
||||
@stop
|
Loading…
Add table
Add a link
Reference in a new issue