mirror of
https://github.com/RedGrox2013/AloeGames-Site.git
synced 2026-07-14 08:56:58 +00:00
Compare commits
10 Commits
0167b1fed2
..
main
| Author | SHA1 | Date | |
|---|---|---|---|
| ba12d86464 | |||
| ae8f98d07a | |||
| e2e980930c | |||
| e5abb93a02 | |||
| 5d6395ea47 | |||
| 2e1a2e007f | |||
| 4f30cdc93b | |||
| 8757a00532 | |||
| f1485164d8 | |||
| 4d52c96512 |
@@ -1,14 +1,23 @@
|
|||||||
# AloeGames site
|
# AloeGames site
|
||||||
|
|
||||||
Clearnet:
|
## Clearnet
|
||||||
|
|
||||||
+ https://aloegames.com/
|
+ https://aloegames.com/
|
||||||
+ https://www.aloegames.com/
|
|
||||||
+ https://aloegames.chickenkiller.com/
|
+ https://aloegames.chickenkiller.com/
|
||||||
+ https://sub.aloegames.chickenkiller.com/
|
|
||||||
|
|
||||||
Yggdrasil:
|
## Yggdrasil
|
||||||
|
|
||||||
+ http://ygg.aloegames.com/
|
+ http://ygg.aloegames.com/
|
||||||
+ http://[201:147:a17f:a04c:b90a:fb29:342:781c]:1616
|
+ http://[200:cd4a:102b:b6b8:cc34:5812:1133:8a21]
|
||||||
|
|
||||||
i2p:
|
## I2P
|
||||||
+ http://ao7r5hzwjb2ynqc5ovy3gelsk24lz7r7yeg6rqjkzc4sqtb3ysia.b32.i2p
|
|
||||||
|
+ http://aloe.i2p/
|
||||||
|
+ http://aloegames.i2p/
|
||||||
|
+ Base32:
|
||||||
|
+ http://ao7r5hzwjb2ynqc5ovy3gelsk24lz7r7yeg6rqjkzc4sqtb3ysia.b32.i2p
|
||||||
|
|
||||||
|
## Tor
|
||||||
|
|
||||||
|
+ http://aloegamewcp5ivt5myay3bgy3mx65kjnutfauxditrjtbvrrn2woamqd.onion
|
||||||
|
+ http://aloe67x3qhmvnmcapbq7jdvezmzrh62ekoinuxtsstnxwqhwy7qa3zqd.onion
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"m.homeserver": {
|
||||||
|
"base_url": "https://matrix.aloegames.com"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"m.server": "matrix.aloegames.com:443"
|
||||||
|
}
|
||||||
+75
-3
@@ -64,7 +64,7 @@ header {
|
|||||||
box-shadow: 0 0 10px var(--accent-glow);
|
box-shadow: 0 0 10px var(--accent-glow);
|
||||||
}
|
}
|
||||||
|
|
||||||
.gitea-link {
|
.header-button {
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding: 6px 12px;
|
padding: 6px 12px;
|
||||||
@@ -72,15 +72,16 @@ header {
|
|||||||
background: var(--card);
|
background: var(--card);
|
||||||
border: 1px solid var(--border);
|
border: 1px solid var(--border);
|
||||||
transition: 0.3s;
|
transition: 0.3s;
|
||||||
|
margin-right: 14px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.gitea-link img {
|
.header-button img {
|
||||||
height: 24px;
|
height: 24px;
|
||||||
width: auto;
|
width: auto;
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
.gitea-link:hover {
|
.header-button:hover {
|
||||||
background: var(--card-hover);
|
background: var(--card-hover);
|
||||||
box-shadow: 0 0 10px var(--accent-glow);
|
box-shadow: 0 0 10px var(--accent-glow);
|
||||||
}
|
}
|
||||||
@@ -122,6 +123,19 @@ p {
|
|||||||
line-height: 1.6;
|
line-height: 1.6;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.contact-link {
|
||||||
|
color: var(--accent);
|
||||||
|
text-decoration: none;
|
||||||
|
border-bottom: 1px solid rgba(34, 197, 94, 0.4);
|
||||||
|
transition: color 0.2s ease, border-color 0.2s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact-link:hover,
|
||||||
|
.contact-link:focus {
|
||||||
|
color: #a7f3d0;
|
||||||
|
border-color: rgba(167, 243, 208, 0.8);
|
||||||
|
}
|
||||||
|
|
||||||
.btn {
|
.btn {
|
||||||
margin-top: 30px;
|
margin-top: 30px;
|
||||||
padding: 14px 28px;
|
padding: 14px 28px;
|
||||||
@@ -218,6 +232,64 @@ p {
|
|||||||
box-shadow: 0 0 20px var(--accent-glow);
|
box-shadow: 0 0 20px var(--accent-glow);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.mirror-links {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
|
||||||
|
gap: 18px;
|
||||||
|
margin-top: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mirror-card {
|
||||||
|
display: block;
|
||||||
|
padding: 18px 20px;
|
||||||
|
border-radius: 18px;
|
||||||
|
background: var(--card);
|
||||||
|
border: 1px solid var(--border);
|
||||||
|
text-decoration: none;
|
||||||
|
transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mirror-icon {
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
width: 34px;
|
||||||
|
height: 34px;
|
||||||
|
margin-bottom: 12px;
|
||||||
|
border-radius: 12px;
|
||||||
|
background: rgba(34, 197, 94, 0.12);
|
||||||
|
color: var(--accent);
|
||||||
|
font-size: 18px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mirror-card:hover .mirror-icon,
|
||||||
|
.mirror-card:focus-visible .mirror-icon {
|
||||||
|
background: rgba(34, 197, 94, 0.24);
|
||||||
|
}
|
||||||
|
|
||||||
|
.mirror-card:hover,
|
||||||
|
.mirror-card:focus-visible {
|
||||||
|
transform: translateY(-2px);
|
||||||
|
background: var(--card-hover);
|
||||||
|
box-shadow: 0 0 24px var(--accent-glow);
|
||||||
|
border-color: rgba(34, 197, 94, 0.35);
|
||||||
|
}
|
||||||
|
|
||||||
|
.mirror-title {
|
||||||
|
display: block;
|
||||||
|
font-size: 18px;
|
||||||
|
font-weight: 700;
|
||||||
|
color: var(--accent);
|
||||||
|
margin-bottom: 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mirror-url {
|
||||||
|
display: block;
|
||||||
|
font-size: 14px;
|
||||||
|
color: var(--text-muted);
|
||||||
|
word-break: break-all;
|
||||||
|
}
|
||||||
|
|
||||||
footer {
|
footer {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
padding: 40px;
|
padding: 40px;
|
||||||
|
|||||||
+38
-8
@@ -19,9 +19,9 @@
|
|||||||
AloeGames
|
AloeGames
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<a class="gitea-link" href="https://gitea.aloegames.com" rel="noopener">
|
<!-- <a class="header-button" href="https://t.me/AloeGames" rel="noopener" target="_blank">
|
||||||
<img src="https://about.gitea.com/gitea-text.svg" alt="Gitea logo">
|
<img src="https://telegram.org/img/t_logo.svg" alt="Telegram">
|
||||||
</a>
|
</a> -->
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="lang-switch" onclick="toggleLang()">RU / EN</div>
|
<div class="lang-switch" onclick="toggleLang()">RU / EN</div>
|
||||||
@@ -30,8 +30,7 @@
|
|||||||
<section class="hero">
|
<section class="hero">
|
||||||
<img src="images/logo.png" height="300">
|
<img src="images/logo.png" height="300">
|
||||||
<h1 id="title">We Build Worlds</h1>
|
<h1 id="title">We Build Worlds</h1>
|
||||||
<p id="desc">AloeGames is a modern game development studio focused on creating immersive, next-generation
|
<p id="desc">AloeGames is a modern, cool company that creates exciting next-generation gaming experiences (actually, we do everything but games).</p>
|
||||||
experiences.</p>
|
|
||||||
|
|
||||||
<form class="search-form" onsubmit="searchQuery(event)">
|
<form class="search-form" onsubmit="searchQuery(event)">
|
||||||
<select id="searchEngine" class="search-engine" aria-label="Select search engine">
|
<select id="searchEngine" class="search-engine" aria-label="Select search engine">
|
||||||
@@ -57,12 +56,43 @@
|
|||||||
<div class="card"><h3>Project Two</h3><p>Multiplayer world with deep progression systems.</p></div>
|
<div class="card"><h3>Project Two</h3><p>Multiplayer world with deep progression systems.</p></div>
|
||||||
<div class="card"><h3>Project Three</h3><p>Story-driven adventure with emotional narrative.</p></div>
|
<div class="card"><h3>Project Three</h3><p>Story-driven adventure with emotional narrative.</p></div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>-->
|
||||||
|
|
||||||
<section>
|
<section>
|
||||||
|
<h2 id="mirrorsTitle">Mirrors</h2>
|
||||||
|
<p id="mirrorsText">We support a free internet and provide mirrors in censorship-resistant networks:</p>
|
||||||
|
<div class="mirror-links">
|
||||||
|
<a class="mirror-card" href="http://ygg.aloegames.com/" target="_blank" rel="noopener">
|
||||||
|
<span class="mirror-icon">🌿</span>
|
||||||
|
<span class="mirror-title">Yggdrasil</span>
|
||||||
|
<span class="mirror-url">ygg.aloegames.com</span>
|
||||||
|
<span class="mirror-url">http://[200:cd4a:102b:b6b8:cc34:5812:1133:8a21]</span>
|
||||||
|
</a>
|
||||||
|
<a class="mirror-card" href="http://aloegames.i2p" target="_blank" rel="noopener">
|
||||||
|
<span class="mirror-icon">🔐</span>
|
||||||
|
<span class="mirror-title">I2P</span>
|
||||||
|
<span class="mirror-url">aloe.i2p</span>
|
||||||
|
<span class="mirror-url">aloegames.i2p</span>
|
||||||
|
<span class="mirror-url">ao7r5hzwjb2ynqc5ovy3gelsk24lz7r7yeg6rqjkzc4sqtb3ysia.b32.i2p</span>
|
||||||
|
</a>
|
||||||
|
<a class="mirror-card" href="http://aloegamewcp5ivt5myay3bgy3mx65kjnutfauxditrjtbvrrn2woamqd.onion" target="_blank" rel="noopener">
|
||||||
|
<span class="mirror-icon">🧅</span>
|
||||||
|
<span class="mirror-title">Tor</span>
|
||||||
|
<span class="mirror-url">aloegamewcp5ivt5myay3bgy3mx65kjnutfauxditrjtbvrrn2woamqd.onion</span>
|
||||||
|
</a>
|
||||||
|
<a class="mirror-card" href="https://aloegames.com/" target="_blank" rel="noopener">
|
||||||
|
<span class="mirror-icon">🌐</span>
|
||||||
|
<span class="mirror-title">Clearnet</span>
|
||||||
|
<span class="mirror-url">aloegames.com</span>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section>
|
||||||
<h2 id="contactTitle">Contact</h2>
|
<h2 id="contactTitle">Contact</h2>
|
||||||
<p id="contactText">Get in touch with us for partnerships, collaborations, or just to say hello.</p>
|
<p id="contactText">Get in touch with us for partnerships, collaborations, or just to say hello.</p>
|
||||||
</section>-->
|
<p>Telegram: <a class="contact-link" href="https://t.me/AloeGames" rel="noopener" target="_blank">@AloeGames</a></p>
|
||||||
|
</section>
|
||||||
|
|
||||||
<footer>
|
<footer>
|
||||||
© 2026 AloeGames. All rights reserved.
|
© 2026 AloeGames. All rights reserved.
|
||||||
|
|||||||
+8
-2
@@ -3,21 +3,25 @@ let currentLang = 'en';
|
|||||||
const translations = {
|
const translations = {
|
||||||
en: {
|
en: {
|
||||||
title: 'We Build Worlds',
|
title: 'We Build Worlds',
|
||||||
desc: 'AloeGames is a modern game development studio focused on creating immersive, next-generation experiences.',
|
desc: 'AloeGames is a modern, cool company that creates exciting next-generation gaming experiences (actually, we do everything but games).',
|
||||||
button: 'Explore',
|
button: 'Explore',
|
||||||
aboutTitle: 'About Us',
|
aboutTitle: 'About Us',
|
||||||
aboutText: 'We are a team of passionate developers, designers, and dreamers. Our mission is to push the boundaries of interactive entertainment and deliver unforgettable gaming experiences.',
|
aboutText: 'We are a team of passionate developers, designers, and dreamers. Our mission is to push the boundaries of interactive entertainment and deliver unforgettable gaming experiences.',
|
||||||
projectsTitle: 'Our Projects',
|
projectsTitle: 'Our Projects',
|
||||||
|
mirrorsTitle: 'Mirrors',
|
||||||
|
mirrorsText: 'We support a free internet and provide mirrors in censorship-resistant networks:',
|
||||||
contactTitle: 'Contact',
|
contactTitle: 'Contact',
|
||||||
contactText: 'Get in touch with us for partnerships, collaborations, or just to say hello.'
|
contactText: 'Get in touch with us for partnerships, collaborations, or just to say hello.'
|
||||||
},
|
},
|
||||||
ru: {
|
ru: {
|
||||||
title: 'Мы создаём миры',
|
title: 'Мы создаём миры',
|
||||||
desc: 'AloeGames — современная игровая студия, создающая захватывающий игровой опыт нового поколения.',
|
desc: 'AloeGames — современная крутая контора, создающая захватывающий игровой опыт нового поколения (на самом деле мы делаем всё, кроме игр).',
|
||||||
button: 'Смотреть',
|
button: 'Смотреть',
|
||||||
aboutTitle: 'О нас',
|
aboutTitle: 'О нас',
|
||||||
aboutText: 'Мы команда разработчиков, дизайнеров и мечтателей. Наша цель — расширять границы интерактивных развлечений и создавать незабываемые игры.',
|
aboutText: 'Мы команда разработчиков, дизайнеров и мечтателей. Наша цель — расширять границы интерактивных развлечений и создавать незабываемые игры.',
|
||||||
projectsTitle: 'Наши проекты',
|
projectsTitle: 'Наши проекты',
|
||||||
|
mirrorsTitle: 'Зеркала',
|
||||||
|
mirrorsText: 'Мы поддерживаем свободный интернет и предоставляем зеркала в цензуроустойчивых сетях:',
|
||||||
contactTitle: 'Контакты',
|
contactTitle: 'Контакты',
|
||||||
contactText: 'Свяжитесь с нами для сотрудничества или просто чтобы сказать привет.'
|
contactText: 'Свяжитесь с нами для сотрудничества или просто чтобы сказать привет.'
|
||||||
}
|
}
|
||||||
@@ -33,6 +37,8 @@ function toggleLang() {
|
|||||||
tryToggleTextContent('aboutTitle', t.aboutTitle);
|
tryToggleTextContent('aboutTitle', t.aboutTitle);
|
||||||
tryToggleTextContent('aboutText', t.aboutText);
|
tryToggleTextContent('aboutText', t.aboutText);
|
||||||
tryToggleTextContent('projectsTitle', t.projectsTitle);
|
tryToggleTextContent('projectsTitle', t.projectsTitle);
|
||||||
|
tryToggleTextContent('mirrorsTitle', t.mirrorsTitle);
|
||||||
|
tryToggleTextContent('mirrorsText', t.mirrorsText);
|
||||||
tryToggleTextContent('contactTitle', t.contactTitle);
|
tryToggleTextContent('contactTitle', t.contactTitle);
|
||||||
tryToggleTextContent('contactText', t.contactText);
|
tryToggleTextContent('contactText', t.contactText);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user