Compare commits
No commits in common. "f042d4eaa7e3a486cf08bf2836a322ddb202edd8" and "6826034958feccc9d286491a5e3680c1a70e2889" have entirely different histories.
f042d4eaa7
...
6826034958
desu.local/frontend
@ -1,5 +1,6 @@
|
||||
FROM httpd:latest
|
||||
COPY httpd.conf /usr/local/apache2/conf/httpd.conf
|
||||
COPY vhost.conf /usr/local/apache2/conf/vhost.conf
|
||||
COPY src/ /usr/local/apache2/htdocs
|
||||
CMD rm /usr/local/apache2/htdocs/index.html
|
||||
COPY src/* /usr/local/apache2/htdocs
|
||||
EXPOSE 80
|
||||
|
@ -1,24 +1,12 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500" rel="stylesheet">
|
||||
<link href="/styles/styles.css" type="text/css" rel="stylesheet" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/fork-awesome@1.1.7/css/fork-awesome.min.css" integrity="sha256-gsmEoJAws/Kd3CjuOQzLie5Q3yshhvmo7YNtBG7aaEY=" crossorigin="anonymous">
|
||||
<link href="/favicon.ico" rel="shortcut icon" />
|
||||
<?php include $_SERVER['DOCUMENT_ROOT'].'/src/common-meta.php';?>
|
||||
<link href="/styles/buttons.css" type="text/css" rel="stylesheet" />
|
||||
<title>desu.local</title>
|
||||
</head>
|
||||
<body>
|
||||
<div class="header">
|
||||
<a href="/" class="logocontainer">
|
||||
<span>
|
||||
<h1>desu.local</h1>
|
||||
<p class="nomobile">Local services and stuffs</p>
|
||||
</span>
|
||||
</a>
|
||||
</div>
|
||||
<?php include $_SERVER['DOCUMENT_ROOT'].'/src/common-header.php';?>
|
||||
<div class="content">
|
||||
<div class="iconbuttoncontainer">
|
||||
<a href="http://jellyfin.desu.local" class="iconbutton">
|
||||
@ -46,9 +34,6 @@
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer">
|
||||
<p>Copyright © 2019-<?php echo date("Y"); ?> rehashedsalt. Distributed under the terms of the MIT License.</p>
|
||||
<p><a href="https://git.desu.ltd/salt/9iron">source</a> <a href="/">home</a></p>
|
||||
</div>
|
||||
<?php include $_SERVER['DOCUMENT_ROOT'].'/src/common-footer.php';?>
|
||||
</body>
|
||||
</html>
|
4
desu.local/frontend/src/src/common-footer.php
Normal file
4
desu.local/frontend/src/src/common-footer.php
Normal file
@ -0,0 +1,4 @@
|
||||
<div class="footer">
|
||||
<p>Copyright © 2019-<?php echo date("Y"); ?> rehashedsalt. Distributed under the terms of the MIT License.</p>
|
||||
<p><a href="https://git.desu.ltd/salt/9iron">source</a> <a href="/">home</a></p>
|
||||
</div>
|
8
desu.local/frontend/src/src/common-header.php
Normal file
8
desu.local/frontend/src/src/common-header.php
Normal file
@ -0,0 +1,8 @@
|
||||
<div class="header">
|
||||
<a href="/" class="logocontainer">
|
||||
<span>
|
||||
<h1>desu.local</h1>
|
||||
<p class="nomobile">Local services and stuffs</p>
|
||||
</span>
|
||||
</a>
|
||||
</div>
|
7
desu.local/frontend/src/src/common-meta.php
Normal file
7
desu.local/frontend/src/src/common-meta.php
Normal file
@ -0,0 +1,7 @@
|
||||
<!-- Meta -->
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500" rel="stylesheet">
|
||||
<link href="/styles/styles.css" type="text/css" rel="stylesheet" />
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/fork-awesome@1.1.7/css/fork-awesome.min.css" integrity="sha256-gsmEoJAws/Kd3CjuOQzLie5Q3yshhvmo7YNtBG7aaEY=" crossorigin="anonymous">
|
||||
<link href="/favicon.ico" rel="shortcut icon" />
|
Reference in New Issue
Block a user