forked from looma/Looma-II
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlooma-html.php
More file actions
36 lines (33 loc) · 891 Bytes
/
looma-html.php
File metadata and controls
36 lines (33 loc) · 891 Bytes
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
<!doctype html>
<!--
Name: Skip
Email: skip@stritter.com
Owner: VillageTech Solutions (villagetechsolutions.org)
Date: 2015 03
Revision: Looma 2.0.0
File: xxxx.php
Description: for Looma 2
-->
<?php $page_title = 'Looma HTML';
include ('includes/header.php');
?>
<!-- add CSS files for this page:
<link rel="stylesheet" href="css/filename.css"> -->
</head>
<body>
<?php
$filename = $_REQUEST['fn'];
$filepath = $_REQUEST['fp'];
?>
<div id="main-container">
<div id="main-container-horizontal">
<div id="fullscreen">
<?php echo "<iframe src='$filepath$filename' allowfullscreen></iframe>"; ?>
<button id="fullscreen-control"></button><br>
</div>
</div>
</div>
<?php include ('includes/toolbar.php'); ?>
<?php include ('includes/js-includes.php'); ?>
<script src="js/looma-screenfull.js"></script>
<script src="js/looma-html.js"></script>