mirror of
https://github.com/elisspace/pops.git
synced 2026-08-29 15:44:05 +00:00
Initial upload
Initialized with just a mock-up layout of the index page up
This commit is contained in:
1
200x200.svg
Normal file
1
200x200.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg width="200" height="200" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" preserveAspectRatio="none"><defs><style type="text/css">#holder_1789680ca08 text { fill:rgba(255,255,255,.75);font-weight:normal;font-family:Helvetica, monospace;font-size:10pt } </style></defs><g id="holder_1789680ca08"><rect width="200" height="200" fill="#777"></rect><g><text x="74.41666603088379" y="104.5">200x200</text></g></g></svg>
|
||||||
|
After Width: | Height: | Size: 427 B |
21
footer.php
Normal file
21
footer.php
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
</div> <!-- close body container class -->
|
||||||
|
|
||||||
|
<footer class="footer bg-info text-white">
|
||||||
|
<div class="container">
|
||||||
|
<!-- Copyright -->
|
||||||
|
<div class="footer-copyright text-center py-3">© 2021 Copyright: Mark Gaultney | Created by:
|
||||||
|
<a href="https://elis.space"> Elis.Space</a>
|
||||||
|
</div>
|
||||||
|
<!-- Copyright -->
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
|
||||||
|
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
|
||||||
|
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
70
header.php
Normal file
70
header.php
Normal file
@@ -0,0 +1,70 @@
|
|||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<!--Bootstrap CSS -->
|
||||||
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous">
|
||||||
|
<!--Custom CSS -->
|
||||||
|
<link href="styles.css" rel="stylesheet">
|
||||||
|
<title>
|
||||||
|
<?php
|
||||||
|
//echo $page;
|
||||||
|
|
||||||
|
switch ($page) {
|
||||||
|
case "default":
|
||||||
|
echo "Gaultney Management LLC";
|
||||||
|
break;
|
||||||
|
case "captionArchive":
|
||||||
|
echo "POTW: Caption Archive";
|
||||||
|
break;
|
||||||
|
case "captionSubmit":
|
||||||
|
echo "POTW: Submit A Caption";
|
||||||
|
break;
|
||||||
|
case "captionVote":
|
||||||
|
echo "POTW: Vote On Your Favorite Caption";
|
||||||
|
break;
|
||||||
|
case "CurrentProblems":
|
||||||
|
echo "POTW: This Week's Math Problems";
|
||||||
|
break;
|
||||||
|
case "LastWeekSolutions":
|
||||||
|
echo "POTW: Last Week's Solutions";
|
||||||
|
break;
|
||||||
|
case "MathArchive":
|
||||||
|
echo "POTW: Problem and Solution Archive";
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
</title>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-sm navbar-dark bg-info">
|
||||||
|
<div class="mx-auto d-sm-flex d-block flex-sm-nowrap">
|
||||||
|
<a class="navbar-brand" href="#">Gaultney Management LLC</a>
|
||||||
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarsExample11" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
<!-- <div class="collapse navbar-collapse text-center" id="navbarsExample11">
|
||||||
|
<ul class="navbar-nav">
|
||||||
|
<li class="nav-item active">
|
||||||
|
<a class="nav-link" href="#">Link</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="#">Link</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="#">Link</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="#">Link</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="#">Link</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div> -->
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
<div class="container">
|
||||||
52
index.php
Normal file
52
index.php
Normal file
@@ -0,0 +1,52 @@
|
|||||||
|
<!doctype html>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
|
||||||
|
<?php
|
||||||
|
$page = "default";
|
||||||
|
include 'header.php';
|
||||||
|
?>
|
||||||
|
|
||||||
|
<!--First Row-->
|
||||||
|
<div class="row justify-content-center text-center m-4">
|
||||||
|
<div class="col-sm-4">
|
||||||
|
<div class="card bg-dark text-white">
|
||||||
|
<img class="card-img" src="200x200.svg" alt="Card image">
|
||||||
|
<div class="card-body">
|
||||||
|
<a href="application.php" class="stretched-link h5">Application</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm-4">
|
||||||
|
<div class="card bg-dark text-white" >
|
||||||
|
<img class="card-img" src="200x200.svg" alt="Card image">
|
||||||
|
<div class="card-body">
|
||||||
|
<a href="application.php" class="stretched-link h5">Properties</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- Second Row -->
|
||||||
|
<div class="row justify-content-center text-center m-4">
|
||||||
|
<div class="col-sm-4">
|
||||||
|
<div class="card bg-dark text-white">
|
||||||
|
<img class="card-img" src="200x200.svg" alt="Card image">
|
||||||
|
<div class="card-body">
|
||||||
|
<a href="application.php" class="stretched-link h5">Submit A Ticket</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm-4">
|
||||||
|
<div class="card bg-dark text-white">
|
||||||
|
<img class="card-img" src="200x200.svg" alt="Card image">
|
||||||
|
<div class="card-body">
|
||||||
|
<a href="application.php" class="stretched-link h5">FAQ</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<?php
|
||||||
|
include 'footer.php';
|
||||||
|
?>
|
||||||
|
</html>
|
||||||
22
styles.css
Normal file
22
styles.css
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
.caption {
|
||||||
|
width:100%;
|
||||||
|
bottom: .3rem;
|
||||||
|
position: absolute;
|
||||||
|
background:#000;
|
||||||
|
background: -webkit-linear-gradient(bottom, #000 40%, rgba(0, 0, 0, 0) 100%) repeat scroll 0 0 rgba(0, 0, 0, 0);
|
||||||
|
background: -moz-linear-gradient(bottom, #000 40%, rgba(0, 0, 0, 0) 100%) repeat scroll 0 0 rgba(0, 0, 0, 0);
|
||||||
|
background: -o-linear-gradient(bottom, #000 40%, rgba(0, 0, 0, 0) 100%) repeat scroll 0 0 rgba(0, 0, 0, 0);
|
||||||
|
background: linear-gradient(to top, #000 40%, rgba(0, 0, 0, 0) 100%) repeat scroll 0 0 rgba(0, 0, 0, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
.thumbnail {
|
||||||
|
border: 0 none;
|
||||||
|
box-shadow: none;
|
||||||
|
margin:0;
|
||||||
|
padding:0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.caption h4 {
|
||||||
|
color: #fff;
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user