mirror of
https://github.com/elisspace/pops.git
synced 2026-08-29 15:44:05 +00:00
draft 1 of b page
This commit is contained in:
50
header.php
50
header.php
@@ -12,31 +12,31 @@
|
||||
<link href="styles.css" rel="stylesheet">
|
||||
<title>
|
||||
<?php
|
||||
//echo $page;
|
||||
echo $page;
|
||||
|
||||
switch ($page) {
|
||||
case "default":
|
||||
echo "Gaultney Management LLC";
|
||||
break;
|
||||
case "app":
|
||||
echo "Fill Out An Application";
|
||||
break;
|
||||
case "property":
|
||||
echo "View Our Properties";
|
||||
break;
|
||||
case "captionVote":
|
||||
echo "Eat Your Spinach Laddies";
|
||||
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;
|
||||
}
|
||||
// switch ($page) {
|
||||
// case "default":
|
||||
// echo "Gaultney Management LLC";
|
||||
// break;
|
||||
// case "app":
|
||||
// echo "Fill Out An Application";
|
||||
// break;
|
||||
// case "property":
|
||||
// echo "View Our Properties";
|
||||
// break;
|
||||
// case "captionVote":
|
||||
// echo "Eat Your Spinach Laddies";
|
||||
// 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>
|
||||
@@ -45,7 +45,7 @@
|
||||
|
||||
<nav class="navbar navbar-expand-sm navbar-dark bg-info">
|
||||
<div class="mx-auto d-sm-flex d-block flex-sm-nowrap">
|
||||
<a class=" text-dark navbar-brand" href="index.php">Gaultney Management LLC</a>
|
||||
<a class=" text-dark navbar-brand" href="../index.php">Gaultney Management LLC</a>
|
||||
<!-- Button that toggles when screen size is small enough below -->
|
||||
<!-- <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>
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
</div>
|
||||
<div class="col-sm-2">
|
||||
<img src="pics\b\signal-2021-04-09-011605_005.jpeg" class="d-block w-100" alt="alt text 3">
|
||||
Lot B: Unavailable
|
||||
<a href="/p/b.php">Lot B: Unavailable
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
48
p/b.php
48
p/b.php
@@ -1,9 +1,51 @@
|
||||
<?php
|
||||
$page = "b";
|
||||
include 'header.php';
|
||||
$page = "Trailer Lot B";
|
||||
include '../header.php';
|
||||
?>
|
||||
|
||||
<!-- Start Carousel -->
|
||||
<div id="carousel-b" class="carousel slide" data-bs-ride="carousel">
|
||||
<div class="carousel-indicators">
|
||||
<button type="button" data-bs-target="#carousel-b" data-bs-slide-to="0" class="active" aria-current="true" aria-label="Slide 1"></button>
|
||||
<button type="button" data-bs-target="#carousel-b" data-bs-slide-to="1" aria-label="Slide 2"></button>
|
||||
<button type="button" data-bs-target="#carousel-b" data-bs-slide-to="2" aria-label="Slide 3"></button>
|
||||
<button type="button" data-bs-target="#carousel-b" data-bs-slide-to="3" aria-label="Slide 4"></button>
|
||||
<button type="button" data-bs-target="#carousel-b" data-bs-slide-to="4" aria-label="Slide 5"></button>
|
||||
<button type="button" data-bs-target="#carousel-b" data-bs-slide-to="5" aria-label="Slide 6"></button>
|
||||
</div>
|
||||
<div class="carousel-inner">
|
||||
<div class="carousel-item active">
|
||||
<img src="/pics/b/combined.jpg" class="d-block w-100" alt="...">
|
||||
</div>
|
||||
<div class="carousel-item">
|
||||
<img src="/pics/b/signal-2021-04-09-011605_001.jpeg" class="d-block w-100" alt="...">
|
||||
</div>
|
||||
<div class="carousel-item">
|
||||
<img src="/pics/b/signal-2021-04-09-011605_002.jpeg" class="d-block w-100" alt="...">
|
||||
</div>
|
||||
<div class="carousel-item">
|
||||
<img src="/pics/b/signal-2021-04-09-011605_003.jpeg" class="d-block w-100" alt="...">
|
||||
</div>
|
||||
<div class="carousel-item">
|
||||
<img src="/pics/b/signal-2021-04-09-011605_004.jpeg" class="d-block w-100" alt="...">
|
||||
</div>
|
||||
<div class="carousel-item">
|
||||
<img src="/pics/b/signal-2021-04-09-011605_005.jpeg" class="d-block w-100" alt="...">
|
||||
</div>
|
||||
</div>
|
||||
<button class="carousel-control-prev" type="button" data-bs-target="#carousel-b" data-bs-slide="prev">
|
||||
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
|
||||
<span class="visually-hidden">Previous</span>
|
||||
</button>
|
||||
<button class="carousel-control-next" type="button" data-bs-target="#carousel-b" data-bs-slide="next">
|
||||
<span class="carousel-control-next-icon" aria-hidden="true"></span>
|
||||
<span class="visually-hidden">Next</span>
|
||||
</button>
|
||||
</div> <!-- End Carousel -->
|
||||
|
||||
<strong>Shankle Rd Apartment</strong><br> 2 BR, 1 BA, living area, kitchen with eating space, storage room, central heat and air, front porch, corner lot with off-street parking, stove, microwave, dishwasher, and refrigerator. Washer/dryer connections in kitchen.
|
||||
|
||||
|
||||
<?php
|
||||
include 'footer.php';
|
||||
include '../footer.php';
|
||||
?>
|
||||
Reference in New Issue
Block a user