mentors

mentors Git Source Tree


Root/app/views/users/index.blade.php

<!doctype html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Users - mentconnect inc</title>
	<script type="text/javascript" src="//maxcdn.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
	<link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.min.css">
	{{HTML::style('css/mentconnect.css')}}
	{{HTML::style('css/denied.css')}}
</head>
<body>
	<header id="cta" class="background-showcase">
		<div id="nv" class="navbar">
			<div class="container">
				<a class="navbar-brand" href="/">
					<div class="asset logo-white-header">
						{{ HTML::image("images/mentconnect.png", "editor", array("width" => "130px", "height" => "44px")) }}
					</div>
				</a>
				<ul class=" nav navbar-nav pull-right">
					<li class>
						{{HTML::link('projects', 'Projects') }}
					</li>
					<li class="button">
						{{HTML::link('logout', 'Logout') }}
					</li>
				</ul>
			</div>
		</div>
	</header>
	
	<div id="main">
		<div class="container padded">
			<div id="feature-screenshot">
				<h2>Let there be mentors and mentees. Let there be learning!</h2>
				<p class="center-feature-sub-content">
					Most of us will agree that we spent a significant amount of time trying to learn what we have learned so far. The other fact is that most of that time went to waste because we did not know where to look or who to ask questions when we needed it most. So, today we join hands in harmony to eliminate the time wastage and focus on building the best products on the planet and beyond. 
				</p>
				
				<hr />
			</div>
			<div class="row">
				<div class="col-lg">
					<table class="table table-striped table-hover">
						<thead>
							<tr>
								<td><strong>First</strong></td>
								<td><strong>Name</strong></td>
								<td><strong>Location</strong></td>
								<td><strong>Bio</strong></td>
								<td><strong>View</strong></td>
							</tr>
						</thead>
						<tbody>
						@foreach($users as $key => $value)
							<tr>
								<td>{{ $value->first }}</td>
								<td>{{ $value->last }}</td>
								<td>{{ $value->location }}</td>
								<td>{{ $value->bio }}</td>
								<td>
									<a class="btn btn-small btn-primary" href="{{ URL::to('user/' . $value->id) }}">View this Nerd</a>
								</td>
							</tr>
						@endforeach
						</tbody>
					</table>
				</div>
			</div>
		</div>
	</div>

	<div class="container padded"></div>
	<br /><br />

	<div id="footer">
        <div id="sub-footer">
        <div class="container">
          <div class="row">
            <div class="col-lg-4">
              <p id="copyright-section">
                Copyright © 2014. All Rights Reserved.
              </p>
            </div>

            <div class="col-lg-4">
              {{HTML::image('images/mentconnect.png', "logo", array('width' => '140px', 'height' => '50px'))}}
            </div>

            <div class="col-lg-4">
              <p id="love">
                Built With Laravel + Bootstrap Frameworks by Elisha Chirchir.
              </p>
            </div>
          </div>
        </div>
      </div>
    </div>
</body>
</html>

Archive Download this file

Branches

Number of commits:
Page rendered in 0.11112s using 11 queries.