* Add more addresses and an automatic converter app. * Simplify icon URIs. * begin moving resources to website project rather than Reverse Proxy.
		
			
				
	
	
		
			23 lines
		
	
	
		
			418 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			418 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/php
 | 
						|
<!DOCTYPE html>
 | 
						|
<html>
 | 
						|
	<head>
 | 
						|
		<title>Hyperling</title>
 | 
						|
		<link rel="icon" sizes="32x32"
 | 
						|
			href="/files/media/icons/favicon.ico"
 | 
						|
		/>
 | 
						|
		<link rel="icon" sizes="192x192"
 | 
						|
			href="/files/media/icons/favicon.ico"
 | 
						|
		/>
 | 
						|
		<!-- CSS -->
 | 
						|
		<style>
 | 
						|
			<?php include "main.css"; ?>
 | 
						|
		</style>
 | 
						|
		<style>
 | 
						|
			<?php include "dark.css"; ?>
 | 
						|
		</style>
 | 
						|
		<style>
 | 
						|
			<?php include "banner.css"; ?>
 | 
						|
		</style>
 | 
						|
	</head>
 |