mirror of
https://github.com/xemu-project/xemu-website.git
synced 2024-11-23 11:29:43 +00:00
67 lines
2.8 KiB
HTML
67 lines
2.8 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<link rel="stylesheet" href="{{ main_url_base }}/theme.css">
|
|
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.13.0/css/all.css">
|
|
<link href="https://fonts.googleapis.com/css2?family=Ubuntu+Mono&display=swap" rel="stylesheet">
|
|
<title>{%block title %}{% endblock %}{% if self.title() %} | {% endif %}xemu: Original Xbox Emulator</title>
|
|
{% block append_head %}{% endblock %}
|
|
|
|
<!-- Global site tag (gtag.js) - Google Analytics -->
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-163809672-1"></script>
|
|
<script>
|
|
window.dataLayer = window.dataLayer || [];
|
|
function gtag(){dataLayer.push(arguments);}
|
|
gtag('js', new Date());
|
|
|
|
gtag('config', 'UA-163809672-1');
|
|
</script>
|
|
|
|
</head>
|
|
<body>
|
|
|
|
<nav class="navbar navbar-expand-md navbar-dark fixed-top bg-dark">
|
|
<a class="navbar-brand" href="{{ main_url_base }}/" style="font-family: 'Ubuntu Mono'">xemu</a>
|
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarsExample04" aria-controls="navbarsExample04" aria-expanded="false" aria-label="Toggle navigation">
|
|
<span class="navbar-toggler-icon"></span>
|
|
</button>
|
|
|
|
<div class="collapse navbar-collapse" id="navbarsExample04">
|
|
<ul class="navbar-nav mr-auto">
|
|
<li class="nav-item active">
|
|
<a class="nav-link" href="{{ main_url_base }}/#compatibility">Compatibility</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</nav>
|
|
|
|
<main role="main">
|
|
{% block jumbotron %}{% endblock %}
|
|
<div class="container">
|
|
<div class="col-lg-10 mx-auto mt-5">
|
|
{% block content %}{% endblock %}
|
|
<footer class="my-5 pt-5 text-muted text-center text-small">
|
|
<p><strong>Disclaimer:</strong>
|
|
All product names, logos, and brands are property of their respective owners. All company, product and service names and/or images used in this website are for identification purposes only.
|
|
</p>
|
|
<p>© 2020-2021 xemu Project</p>
|
|
{% if False %}
|
|
<ul class="list-inline">
|
|
<li class="list-inline-item"><a href="#">Privacy</a></li>
|
|
<li class="list-inline-item"><a href="#">Terms</a></li>
|
|
<li class="list-inline-item"><a href="#">Support</a></li>
|
|
</ul>
|
|
{% endif %}
|
|
</footer>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
|
|
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
|
|
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
|
|
{% block append_foot %}{% endblock %}
|
|
</body>
|
|
</html>
|