.templates
template.php
about
css
errors
images
minecraft
smz3mw
src
startpage
styles
terraria
.dockerignore
.gitignore
.gitlab-ci.yml
.htaccess
Dockerfile
README.md
favicon.ico
index.php
logo.png
17 lines
386 B
PHP
17 lines
386 B
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<?php include $_SERVER['DOCUMENT_ROOT'].'/src/common-meta.php';?>
|
|
<title>9iron</title>
|
|
</head>
|
|
<body>
|
|
<?php include $_SERVER['DOCUMENT_ROOT'].'/src/common-header.php';?>
|
|
<div class="content">
|
|
<div class="section">
|
|
<h1>Changeme</h1>
|
|
</div>
|
|
</div>
|
|
<?php include $_SERVER['DOCUMENT_ROOT'].'/src/common-footer.php';?>
|
|
</body>
|
|
</html>
|