-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathguides.php
44 lines (42 loc) · 1.2 KB
/
guides.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<title> TRPS | Guides </title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link rel="stylesheet" media="only screen and (max-width: 710px)" href="css/small.css" />
</head>
<body>
<header>
<h1> That Raspberry Pi Server </h1>
<nav>
<?php include 'php-files/nav.php'; ?>
</nav>
</header>
<section class="top2">
<div class="body-outter">
<div class="body-inner-dark">
<h1> Guides </h1>
<!-- <p> Welcome to TRPS, the web server running on a raspberry pi </p> -->
</div>
</div>
</section>
<main>
<section class="body">
<div class="body-outter">
<h1> Guides </h1> <span> Raspbery Pi Guides </span>
<div class="body-inner-light ">
<h2 id="1"> Get Started </h2>
<h3 id="1.1"> Basic Guides </h3>
<?php include 'php-files/top-guides-01.php'; ?>
<h2 id="2"> Linux and Servers </h2>
<h3 id="2.1"> Top Guides </h3>
<?php include 'php-files/top-guides-02.php'; ?>
<h3 id="2.2"> Other Guides </h3>
<?php include 'php-files/top-guides-03.php'; ?>
</div>
<div>
</section>
</main>
</body>
</html>