mirror of
https://github.com/Ellpeck/TinyLifeWeb.git
synced 2024-11-22 19:28:35 +01:00
added (experimental) mailing list
This commit is contained in:
parent
74c393fe86
commit
4dba0ba995
3 changed files with 198 additions and 170 deletions
|
@ -1,6 +1,6 @@
|
||||||
<div class="section">
|
<div class="section">
|
||||||
<h1 id="devlogs">📝 Devlogs</h1>
|
<h1 id="devlogs">📝 Devlogs</h1>
|
||||||
<p>Along with every major update, we publish a devlog that features additional information as well as some screenshots. You can read them on itch or on Steam. You can also read <a href="https://docs.tinylifegame.com/Changelog">the full changelog</a>.</p>
|
<p>Along with every major update, we publish a devlog that features additional information as well as some screenshots. You can read them on itch or on Steam. You can also read <a href="https://docs.tinylifegame.com/Changelog">the full changelog</a> or subscribe to <a href="#subscribe">the mailing list</a>.</p>
|
||||||
|
|
||||||
<div class="devlogs">
|
<div class="devlogs">
|
||||||
{% for item in site.data.devlogs %}
|
{% for item in site.data.devlogs %}
|
||||||
|
|
|
@ -1,17 +1,36 @@
|
||||||
<div class="section">
|
<div class="section">
|
||||||
<h1 id="social">🔗 Social</h1>
|
<h1 id="social">🔗 Social</h1>
|
||||||
<p>
|
<p>
|
||||||
If you want to stay up to date with Tiny Life's development, you should follow the game on Twitter. You can also join the Discord to ask questions or share your gameplay!
|
If you want to stay up to date with Tiny Life's development, you should follow the game on Twitter or subscribe to the mailing list below. You can also join the Discord to ask questions or share your gameplay!
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<div class="row justify-content-center">
|
<div class="row justify-content-center">
|
||||||
<div class="col-auto">
|
<div class="col-auto">
|
||||||
<a class="twitter-timeline" href="https://twitter.com/TinyLifeGame" width="400" height="650"></a>
|
<a class="twitter-timeline" href="https://twitter.com/TinyLifeGame" width="400" height="600"></a>
|
||||||
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
|
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-auto">
|
<div class="col-auto">
|
||||||
<iframe id="discord-widget" title="Ellpeck Games Discord server" width="400" height="650" allowtransparency="true" frameborder="0" src="https://discordapp.com/widget?id=181435613147430913&theme=light"></iframe>
|
<iframe id="discord-widget" title="Ellpeck Games Discord server" width="400" height="600" allowtransparency="true" frameborder="0" src="https://discordapp.com/widget?id=181435613147430913&theme=light"></iframe>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div id="subscribe" class="mailing-list bg-light">
|
||||||
|
<h3>📫 Subscribe</h3>
|
||||||
|
<p>You can also subscribe to the mailing list, which means you will be notified about future news and devlog posts via email. We promise not to send too many emails, but you can always unsubscribe easily, too.</p>
|
||||||
|
|
||||||
|
<form method="post" action="https://lists.ellpeck.de/subscription/form" class="listmonk-form text-center">
|
||||||
|
<div>
|
||||||
|
<input type="hidden" name="nonce">
|
||||||
|
<p><input type="email" name="email" required placeholder="E-mail"></p>
|
||||||
|
<p><input type="text" name="name" placeholder="Name (optional)"></p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<input id="16f4b" type="checkbox" name="l" checked value="16f4bf5a-7133-4255-958e-1d325fea6ba8">
|
||||||
|
<label for="16f4b">🏡 Tiny Life News</label>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p><input type="submit" value="Subscribe"></p>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
|
@ -139,3 +139,12 @@ body {
|
||||||
margin-top: 60px;
|
margin-top: 60px;
|
||||||
margin-bottom: 60px;
|
margin-bottom: 60px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.mailing-list {
|
||||||
|
width: 80%;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
margin-top: 40px;
|
||||||
|
padding: 20px;
|
||||||
|
border-radius: 5px;
|
||||||
|
}
|
Loading…
Reference in a new issue