Skip to content

Commit f719127

Browse files
committed
Add disclaimer
1 parent c32a3f7 commit f719127

File tree

2 files changed

+30
-4
lines changed

2 files changed

+30
-4
lines changed

templates/template_base.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,7 @@
8989
<footer>
9090
<div class="container text-muted">
9191
{% block append_footer %}{% endblock %}
92-
<p><strong>Disclaimer:</strong>
93-
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.
92+
<p><strong>Disclaimer:</strong> This project is an independent open source emulation effort and is not endorsed by, directly affiliated with, maintained, authorized, or sponsored by Microsoft Corporation. All product and company names are the registered trademarks of their original owners. The use of any trade name or trademark is for identification and reference purposes only and does not imply any association with the trademark holder of their product brand.
9493
</p>
9594
<p>&copy; 2024 xemu Project</p>
9695
</div>

templates/template_index.html

Lines changed: 29 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,27 @@
4444
left: 0;
4545
top: 0;
4646
}
47-
4847
.jumbotron {
4948
position: relative;
49+
display:flex;
50+
flex-direction:column;
51+
}
52+
53+
54+
.disclaimer-container {
55+
align-self: bottom;
56+
z-index: 10;
57+
}
58+
59+
.disclaimer {
60+
color: #bbb;
61+
background-color: rgba(0.2,0.2,0.2,0.6);
62+
padding: 0.5em;
63+
font-size: 0.9em;
64+
}
65+
66+
.project-info {
67+
margin: auto;
5068
}
5169

5270
@media only screen and (min-width: 768px)
@@ -154,7 +172,7 @@
154172
{% block jumbotron %}
155173
<div class="jumbotron d-flex align-items-center min-vh-100">
156174
<div id="bg-scene"></div>
157-
<div class="container">
175+
<div class="container project-info py-5">
158176
<div class="row mt-5">
159177
<div class="col-md-6 mt-4 pb-5 pb-md-0 text-center">
160178
<div id="xbox-scene"></div>
@@ -191,10 +209,19 @@ <h4 class="card-subtitle mb-2">Original Xbox Emulator</h4>
191209
<br />
192210
<a href="/docs/download" id="download-options" style="display: none">Alternative download options</a>
193211
</div>
212+
194213
</div>
214+
215+
195216
</div>
196217
</div>
197218
</div>
219+
220+
<div class="disclaimer-container">
221+
<div class="container text-center mx-auto disclaimer">
222+
<b>Disclaimer:</b> This project is an independent open source emulation effort and is not endorsed by, directly affiliated with, maintained, authorized, or sponsored by Microsoft Corporation. All product and company names are the registered trademarks of their original owners. The use of any trade name or trademark is for identification and reference purposes only and does not imply any association with the trademark holder of their product brand.
223+
</div>
224+
</div>
198225
</div>
199226
{% endblock %}
200227

0 commit comments

Comments
 (0)