-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
executable file
·23 lines (23 loc) · 816 Bytes
/
index.php
File metadata and controls
executable file
·23 lines (23 loc) · 816 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_once 'php/Configuration.php';
require_once 'php/ClassLoading.php';
require_once 'php/LogicStart.php';
?>
<!DOCTYPE html>
<html lang='pl-PL'>
<head>
<meta charset='UTF-8'>
<title>RSS Reader</title>
<link rel='stylesheet' href='css/index.css'>
</head>
<body>
<div class='info' id='intro1'><?php print($intros[0]); ?></div>
<div class='info' id='articles1'><?php print($articlesDivContent[0]); ?></div>
<div class='info' id='intro2'><?php print($intros[1]); ?></div>
<div class='info' id='articles2'><?php print($articlesDivContent[1]); ?></div>
<div class='info' id='intro3'><?php print($intros[2]); ?></div>
<div class='info' id='articles3'><?php print($articlesDivContent[2]); ?></div>
</body>
</html>
<?php
require_once 'php/LogicEnd.php';