forked from fullstackjs-bhm/OCT2017
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfs-github.php
More file actions
23 lines (22 loc) · 728 Bytes
/
fs-github.php
File metadata and controls
23 lines (22 loc) · 728 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
require('includes/header.php');
?>
<!-- Github Link Cards -->
<div class="container">
<div class="row fs-github-cards text-center">
<!-- Github Individual Link Card -->
<div class="col-12 col-sm-6 col-md-4 my-4 mx-auto">
<div class="card">
<div class="card-block px-4 py-4">
<i class="fa fa-github fa-5x d-block"></i>
<h3 class="card-title">October 2017</h3>
<p class="card-text">Check out the github repository for the October 2017 Fullstack class.</p>
<a href="https://github.com/fullstackjs-bhm/OCT2017" class="btn btn-secondary">Visit Repository</a>
</div>
</div>
</div>
</div>
</div>
<?php
require('includes/footer.php');
?>