quartznet-info/index.php
Gitea 720dcc89eb Layout redesign.
- In a seperate commit from the stylesheet changes. Work in progress.
2020-06-22 03:44:55 -04:00

71 lines
2.2 KiB
PHP
Executable File

<!DOCTYPE html>
<html lang="en">
<head>
<title>Quartznet | Sirius</title>
<!-- General meta tags -->
<meta charset="utf-8">
<meta content='text/html; charset=utf-8' http-equiv='Content-Type'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="A software and game studio.">
<meta name="keywords" content="quartznet, software, games, tools"/>
<meta name="author" content="quartznet"/>
<!-- Open Graph tags -->
<meta property="og:title" content="quartznet" />
<meta property="og:description" content="We are software and game developers." />
<!-- Load CSS -->
<link rel="stylesheet" href="/quartznet/assets/css/bootstrap.min.css" defer>
<link href="/quartznet/assets/css/stylesheet.css" rel="stylesheet">
<link href="/quartznet/assets/css/themes.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet">
<link rel="icon" href="/quartznet/assets/favicon.ico">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-120787474-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-120787474-1');
</script>
</head>
<body>
<?php include "includes/header.php" ?>
<main class="container">
<!-- Project One -->
<div class="row">
<div class="col-md-7">
<a href="/quartznet/sirius">
<img class="img-fluid mb-3 mb-md-0" src="https://placehold.it/600x300" alt="">
</a>
</div>
<div class="col-md-5">
<h3>Sirius</h3>
<p>A 2D sci-fi game about wannabe space captain trying to find their path.</p>
</div>
</div>
<hr>
<!-- Project Two -->
<div class="row">
<div class="col-md-7">
<a href="/quartznet/sirius">
<img class="img-fluid mb-3 mb-md-0" src="https://placehold.it/600x300" alt="">
</a>
</div>
<div class="col-md-5">
<h3>Quartz</h3>
</div>
</div>
</main>
<?php include "includes/footer.php" ?>
</body>
</html>