-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtimeline.blade.php
More file actions
92 lines (83 loc) · 3.65 KB
/
timeline.blade.php
File metadata and controls
92 lines (83 loc) · 3.65 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
@extends('layouts.master')
@section('title')
<title> Like Minds At </title>
@stop
@section('content')
<div class="container">
<!-- Timeline
================================================= -->
<div class="timeline">
<div class="timeline-cover">
<!--Timeline Menu for Large Screens-->
<div class="timeline-nav-bar hidden-sm hidden-xs">
<div class="row">
<div class="col-md-3">
<div class="profile-info">
<img src="http://placehold.it/300x300" alt="" class="img-responsive profile-photo" />
<h3>Chloe Adams</h3>
<p class="text-muted">San Antonio, TX</p>
</div>
</div>
<div class="col-md-9">
<ul class="list-inline profile-menu">
@if(Auth::check())
<li><a href="timeline.html" class="active">Edit Profile</a></li>
<li><a href="timeline-about.html">My Events</a></li>
<li><a href="timeline-album.html">Create Event</a></li>
<li><a href="timeline-album.html">Logout</a></li>
@else
<li><a href="timeline.html" class="active"><?= Auth::user()->name; ?>Events</a></li>
<li><a href="timeline-about.html">Contact</a></li>
@endif
</ul>
</div>
</div>
</div><!--Timeline Menu for Large Screens End-->
<!--Timeline Menu for Small Screens-->
<div class="navbar-mobile hidden-lg hidden-md">
<div class="profile-info">
<img src="http://placehold.it/300x300" alt="" class="img-responsive profile-photo" />
<h4>Chloe Adams</h4>
<p class="text-muted">San Antonio, TX</p>
</div>
<div class="mobile-menu">
<ul class="list-inline">
<li><h4>Sarah Cruiz</h4></li>
@if(Auth::check())
<li><a href="timeline.html" class="active">Edit Profile</a></li>
<li><a href="timeline-about.html">My Events</a></li>
<li><a href="timeline-album.html">Create Event</a></li>
<li><a href="timeline-album.html">Logout</a></li>
@else
<li><a href="timeline.html" class="active"><?= Auth::user()->name; ?>Events</a></li>
<li><a href="timeline-about.html">Contact</a></li>
@endif
</ul>
</div>
</div><!--Timeline Menu for Small Screens End-->
</div>
<div id="page-contents">
<div class="row">
<div class="col-md-3"></div>
<div class="col-md-7">
<!-- Post Create Box
================================================= -->
<div class="create-post">
<div class="row">
<div class="col-md-7 col-sm-7">
<div class="form-group">
<textarea name="texts" id="exampleTextarea" cols="30" rows="1" class="form-control" placeholder="Write what you wish"></textarea>
</div>
</div>
</div>
</div><!-- Post Create Box End-->
<!-- Scripts
================================================= -->
<script src="js/jquery-3.1.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.sticky-kit.min.js"></script>
<script src="js/jquery.scrollbar.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>
@stop