This commit is contained in:
agnes the alien 2025-11-24 08:12:18 +00:00
parent 6eb6d10c25
commit 26592543e1
6 changed files with 20 additions and 31 deletions

View file

@ -2,10 +2,10 @@
:root { :root {
--tangerine: #F7A278; --tangerine: #F7A278;
--orange: #c94c10; --orange: #633191;
--champagne: #FDE4D8; --champagne: #4e3566;
--dusty-champagne: #EFC6B8; --dusty-champagne: #8e8299;
--charcoal: #626262; --charcoal: #bc87ed;
--emoji-picker-rounding: 6px; --emoji-picker-rounding: 6px;
--emoji-picker-label: #774519; --emoji-picker-label: #774519;
@ -29,7 +29,7 @@ html {
} }
body { body {
background: var(--champagne); background: #cd9df5;
font-size: 1.6rem; font-size: 1.6rem;
line-height: 1.4; line-height: 1.4;
max-width: 768px; max-width: 768px;
@ -509,4 +509,4 @@ footer nav ul li a:hover {
.grid-content main article .image img { .grid-content main article .image img {
max-width: var(--image-max-size); max-width: var(--image-max-size);
} }
} }

View file

@ -3,9 +3,9 @@
<head> <head>
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8"> <meta charset="utf-8">
<title>{% if page_title %}{{ page_title }} — {% endif %}moku.blog</title> <title>{% if page_title %}{{ page_title }} — {% endif %}cheeeeesy</title>
{% if page_title %}<meta property="og:title" content="{{ page_title }}">{% endif %} {% if page_title %}<meta property="og:title" content="{{ page_title }}">{% endif %}
<meta property="og:site_name" content="BLACKBERRYYY"> <meta property="og:site_name" content="cheeeeeesy">
<meta property="og:type" content="{{ opengraph_type or "website" }}"> <meta property="og:type" content="{{ opengraph_type or "website" }}">
<meta property="og:description" content="a lightweight food blogging website"> <meta property="og:description" content="a lightweight food blogging website">
<meta name="description" content="a lightweight food blogging website"> <meta name="description" content="a lightweight food blogging website">
@ -18,7 +18,7 @@
</head> </head>
<body> <body>
<header> <header>
<h1>{{ header_emoji }} BLACKBERRY<sup>beta</sup></h1> <h1>{{ header_emoji }}CHEEEEEESY<sup>beta</sup></h1>
<nav> <nav>
<ul> <ul>
{% if request.user.is_authenticated %} {% if request.user.is_authenticated %}

View file

@ -4,7 +4,7 @@
<div class="content block"> <div class="content block">
<h2>privacy 🕵️</h2> <h2>privacy 🕵️</h2>
<p>privacy is a big concern to us, so we wanted to keep this page as simple as possible.</p> <p>privacy is a big concern to us, so we wanted to keep this page as simple as possible.</p>
<p>by using moku.blog in any form, you <strong>hereby consent</strong> to this policy.</p> <p>by using cheesy in any form, you <strong>hereby consent</strong> to this policy.</p>
<h3>what data do we hold?</h3> <h3>what data do we hold?</h3>
<p>when you sign up, you provide a username, email address and password. this is the only required data. further optional data can be voluntarily given, such as an 'about me', location and pronouns. additionally, you can provide settings such as your preferred language.</p> <p>when you sign up, you provide a username, email address and password. this is the only required data. further optional data can be voluntarily given, such as an 'about me', location and pronouns. additionally, you can provide settings such as your preferred language.</p>
<p>we also store the data given when you decide to make a post, including emoji, food, verb and image. these are stored in our database, linked to your user profile.</p> <p>we also store the data given when you decide to make a post, including emoji, food, verb and image. these are stored in our database, linked to your user profile.</p>
@ -21,9 +21,9 @@
<li><strong>object processing</strong> - you have to right to object to our processing of your personal data, under certain conditions.</li> <li><strong>object processing</strong> - you have to right to object to our processing of your personal data, under certain conditions.</li>
<li><strong>data portability</strong> - you have the right to request that we transfer the data we have collected to another organisation, or directly to you, under certain conditions.</li> <li><strong>data portability</strong> - you have the right to request that we transfer the data we have collected to another organisation, or directly to you, under certain conditions.</li>
</ul> </ul>
<p>to exercise any of these rights, please get in touch by email at <strong>m5ka@posteo.de</strong></p> <p>to exercise any of these rights, please get in touch by email at <strong>alienhospitals@gmail.com</strong></p>
<h3>children's information</h3> <h3>children's information</h3>
<p>protection of children online is a massive priority for us and we encourage parents to be aware of and guide their children's online activity.</p> <p>protection of children online is a massive priority for us and we encourage parents to be aware of and guide their children's online activity.</p>
<p>moku.blog does not knowingly collect any personal identifiable information from children under the age of 13. if you think that your child provided this kind of information on our website, we strongly encourage you to contact us immediately and we will do our best to prompty remove such information from our records.</p> <p>moku.blog does not knowingly collect any personal identifiable information from children under the age of 13. if you think that your child provided this kind of information on our website, we strongly encourage you to contact us immediately and we will do our best to prompty remove such information from our records.</p>
</div> </div>
{% endblock content %} {% endblock content %}

View file

@ -6,12 +6,7 @@
<form action="" method="POST" enctype="multipart/form-data" class="auth"> <form action="" method="POST" enctype="multipart/form-data" class="auth">
{% include "moku/snippets/form_errors.jinja" %} {% include "moku/snippets/form_errors.jinja" %}
{% csrf_token %} {% csrf_token %}
<div class="field"> <div class="field">
<label for="id_avatar">{{ form.avatar.label }}</label>
<div>{{ form.avatar }}</div>
<span class="help">{{ form.avatar.help_text }}</span>
</div>
<div class="field">
<label for="id_pronouns">{{ form.pronouns.label }}</label> <label for="id_pronouns">{{ form.pronouns.label }}</label>
<input type="text" name="pronouns" id="id_pronouns" value="{{ form.pronouns.value() or "" }}"> <input type="text" name="pronouns" id="id_pronouns" value="{{ form.pronouns.value() or "" }}">
<span class="help">{{ form.pronouns.help_text }}</span> <span class="help">{{ form.pronouns.help_text }}</span>
@ -29,4 +24,4 @@
<button type="submit">{% trans %}update!{% endtrans %}</button> <button type="submit">{% trans %}update!{% endtrans %}</button>
</form> </form>
</div> </div>
{% endblock content %} {% endblock content %}

View file

@ -44,12 +44,7 @@
{{ form.recipe }} {{ form.recipe }}
<span class="help">{{ form.recipe.help_text }}</span> <span class="help">{{ form.recipe.help_text }}</span>
</div> </div>
<div class="field">
<label for="id_image">{{ form.image.label }}</label>
<div>{{ form.image }}</div>
<span class="help" id="help_image">{{ form.image.help_text }}</span>
</div>
<div class="field"> <div class="field">
<button type="submit">{% trans %}post!{% endtrans %}</button> <button type="submit">{% trans %}post!{% endtrans %}</button>
</div> </div>
</form> </form>

View file

@ -3,17 +3,16 @@
{% block content %} {% block content %}
<div class="content block"> <div class="content block">
<h2>terms of use ✅</h2> <h2>terms of use ✅</h2>
<p>in order to use moku.blog, you need to agree to the following rules. if you don't follow these, your account may be removed.</p> <p>in order to use cheesy, you need to agree to the following rules. if you don't follow these, your account may be removed.</p>
<h3>the rules</h3> <h3>the rules</h3>
<ul> <ul>
<li>you must be at least <strong>13 years old</strong> to use this website.</li> <li>you must be at least <strong>13 years old</strong> to use this website.</li>
<li>racism, homophobia, biphobia, transphobia, ableism, misogyny and other <strong>oppressive attitudes are explicitly forbidden</strong> in this community. moku.blog is queer-led and we will always foster an inclusive community as our number one priority, no exceptions.</li> <li>racism, homophobia, biphobia, transphobia, ableism, misogyny and other <strong>oppressive attitudes are explicitly forbidden</strong> in this community. no exceptions.</li>
<li>using moku.blog in a way that is <strong>against the law</strong>, such as promoting malware, phishing or infringing copyright, is not allowed.</li> <li>using cheesy in a way that is <strong>against the law</strong>, such as promoting malware, phishing or infringing copyright, is not allowed.</li>
<li>content posted to moku.blog must be <strong>suitable for all ages</strong>. pornographic content, blood and gore are strictly forbidden and will result in immediate action taken against you.</li>
<li><strong>spamming and advertising</strong> is not allowed. it's also very annoying.</li> <li><strong>spamming and advertising</strong> is not allowed. it's also very annoying.</li>
<li><strong>harassing and bullying</strong> other users will not be tolerated in this community.</li> <li><strong>harassing and bullying</strong> other users will not be tolerated in this community.</li>
<li><strong>revealing personal information</strong> about yourself or others ("doxxing") is strictly forbidden and will result in immediate consequences.</li> <li><strong>revealing personal information</strong> about yourself or others ("doxxing") is strictly forbidden and will result in immediate consequences.</li>
</ul> </ul>
<p>thanks for reading to the bottom of these! they help us to keep our community feeling safe. 🥰</p>
</div> </div>
{% endblock content %} {% endblock content %}