-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
155 lines (132 loc) · 4.86 KB
/
index.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<!DOCTYPE html>
<html lang="en">
<head>
<title>TRPS | Home</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="top">
<div class="body-outter">
<div class="body-inner-dark">
<h1 id="1"> Welcome To That Raspberry Pi Server </h1>
<a class="next-button" href="index.php#2" title="next"> ⇩ </a>
<p> The Raspberry Pi web server, which hosts my minetest
mods along with having guides to help people learn how to set-up
a raspberry pi and use GNU/Linux. </p>
<!-- <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> Welcome </h1>
<span> To That Raspberry Pi server </span>
<div class="body-inner-light ">
<!-- <h2> What Is TRPS</h2>
<p> That Rs Pi Server is a site which is used to host my minetest
mods along with having guides to help people learn how to set-up
a raspberry pi and use GNU/Linux.</p> -->
<br />
<h2> What’s a Raspberry PI? </h2>
<p> A raspberry pi is a range of small pocket sized single-board
Computers build and developed by the raspberry pi foundation.
The original aim of the Raspberry pi is to help people learn
how program and use GNU/Linux. Due to the low price and somewhat
powerful computer the raspberry pi can be used for projects or
as a home server. </p>
<p> The Raspberry pi foundation has a large range of fun activities
which you can do with your Pi. However if you want to do
something useful with your pi you can choose one of the guides
below. </p>
<p> If you are interested in getting one you can get one for the
Raspberry Pi Website. </p>
<a class="button" href="https://www.raspberrypi.org/products/"> Get a Pi Now </a>
<p> * Links to www.raspberrypi.org </p>
<br />
</div>
</section>
<section class="info">
<div class="body-outter">
<div class="body-inner-dark">
<br />
<h1 id="2"> Get Started </h1>
<a class="next-button" href="index.php#3" title="next"> ⇩ </a>
<p> before you start you will need to setup your raspbery pi. Below
are some guides to help you do this. </p>
<?php include 'php-files/top-guides-01.php'; ?>
</div>
</div>
</section>
<section class="body">
<div class="body-outter">
<h1>Basics </h1>
<span> Learn The Basics and Setup </span>
<div class="body-inner-light">
<p> Learn the basics, and find out how to get your raspbery pi up and
running. </p>
<p><b> This Will Cover </b> </p>
<dl>
<dt> ‣ Setting up your Pi </dt>
<dd> Find out what you need and how to get everything ready
for the Pi </dd> <br />
<dt> ‣ Configure the OS on your Pi </li>
<dd> How to configure the Operating System on your Raspbery pi
</dd> <br />
<dt> ‣ The Basics </dt>
<dd> Find out how to get around the GNU/Linux Operating System
</dd><br />
</dl>
<a class="button" href="guides.php#1"> More on This </a>
<!-- <h2> Setting Things up </h2>
<p> before you start you will need to setup your raspbery pi. Below
are some guides to help you do this. </p> -->
</div>
</div>
</section>
<section class="guid">
<div class="body-outter">
<div class="body-inner-dark">
<h1 id="3"> Linux and Servers </h1>
<a class="next-button" href="index.php#1" title="top"> ⇪ </a>
<p> When everything has been setup you can now put it to use. Below
are some guides to help you do this. </p>
<?php include 'php-files/top-guides-02.php'; ?>
</div>
</div>
</section>
<section class="body">
<div class="body-outter">
<br />
<h1>Projects </h1>
<span> Install Software for the server </span>
<div class="body-inner-light">
<p> Learn the how to turn your Pi into a cheap Server. </p>
<p><b> This Will Cover </b> </p>
<dl>
<dt> ‣ Setting Up Apache2 </dt>
<dd> Turn your Raspbery pi into a web server so you can make your
own website </dd> <br />
<dt> ‣ Samba File Server </li>
<dd> Access any files on your network with your Raspbery Pi
</dd> <br />
<dt> ‣ Linux Commands </dt>
<dd> More on commands for the GNU/Linux Operating System
</dd><br />
</dl>
<p> You Can See more on our Guides Page. </p>
<a class="button" href="guides.php#2"> Guides Page </a>
</div>
</div>
</section>
</main>
</body>
</html>