-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.blade.php
75 lines (71 loc) · 3.28 KB
/
blog.blade.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
@extends('theme::layouts.blog')
@section('title', cms('site.name'))
@section('body_classes')
@section('header')
<header class="intro-header" style="background-image: url('img/home-bg.jpg')"><div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<div class="site-heading">
<h1>{{ cms('site.name') }}</h1>
<hr class="small">
<span class="subheading">{{ cms('site.description') }}</span>
</div>
</div>
</div>
</div>
</header>
@stop
@section('content')
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<div class="post-preview">
<a href="{{ URL::to('post') }}">
<h2 class="post-title">
Man must explore, and this is exploration at its greatest
</h2>
<h3 class="post-subtitle">
Problems look mighty small from 150 miles up
</h3>
</a>
<p class="post-meta">Posted by <a href="{{ URL::to('#') }}">Start Bootstrap</a> on September 24, 2014</p>
</div>
<hr><div class="post-preview">
<a href="{{ URL::to('post') }}">
<h2 class="post-title">
I believe every human has a finite number of heartbeats. I don't intend to waste any of mine.
</h2>
</a>
<p class="post-meta">Posted by <a href="{{ URL::to('#') }}">Start Bootstrap</a> on September 18, 2014</p>
</div>
<hr><div class="post-preview">
<a href="{{ URL::to('post') }}">
<h2 class="post-title">
Science has not yet mastered prophecy
</h2>
<h3 class="post-subtitle">
We predict too much for the next year and yet far too little for the next ten.
</h3>
</a>
<p class="post-meta">Posted by <a href="{{ URL::to('#') }}">Start Bootstrap</a> on August 24, 2014</p>
</div>
<hr><div class="post-preview">
<a href="{{ URL::to('post') }}">
<h2 class="post-title">
Failure is not an option
</h2>
<h3 class="post-subtitle">
Many say exploration is part of our destiny, but it’s actually our duty to future generations.
</h3>
</a>
<p class="post-meta">Posted by <a href="{{ URL::to('#') }}">Start Bootstrap</a> on July 8, 2014</p>
</div>
<hr><!-- Pager -->
<ul class="pager">
<li class="next">
<a href="{{ URL::to('#') }}">Older Posts →</a>
</li>
</ul></div>
</div>
</div>
@stop