feat(ops): kubernetes deployment #4

Merged
noah merged 2 commits from issue/kubernetes into v2 2025-07-20 23:08:13 +00:00
7 changed files with 163 additions and 0 deletions
Showing only changes of commit 73ead23269 - Show all commits

View File

@@ -1,5 +1,4 @@
<header id="header">
<div class="h-card p-author">
<data class="u-photo" value="{{ local_actor.icon_url }}"></data>
<a href="{{ local_actor.url }}" class="u-url u-uid no-hover title">
@@ -46,6 +45,8 @@
{% endif %}
{% if not HIDES_FOLLOWERS or is_admin %}
<li>{{ header_link("followers", "Followers") }} <span class="counter">{{ followers_count }}</span></li>
{% else %}
<li>Followers <span class="counter">{{ followers_count }} </span></li>
{% endif %}
{% if not HIDES_FOLLOWING or is_admin %}
<li>{{ header_link("following", "Following") }} <span class="counter">{{ following_count }}</span></li>
@@ -58,5 +59,4 @@
</nav>
</div>
</header>

View File

@@ -2,7 +2,7 @@
{% extends "layout.html" %}
{% block head %}
<title>{{ local_actor.display_name }}'s microblog</title>
<title>{{ local_actor.display_name }}'s posts.</title>
<link rel="indieauth-metadata" href="{{ url_for("well_known_authorization_server") }}">
<link rel="authorization_endpoint" href="{{ url_for("indieauth_authorization_endpoint") }}">
<link rel="token_endpoint" href="{{ url_for("indieauth_token_endpoint") }}">

View File

@@ -1 +1,13 @@
// override vars for theming here
$font-stack: Helvetica, sans-serif;
$background: #041704;
$light-background: #115817;
$text-color: #8f8f8f;
$primary-color: #33DD3D; // ярко-зелёный акцент
$secondary-color: #a259d9; // фиолетовый акцент
$form-background-color: #23262f;
$form-text-color: #e6e6e6;
$muted-color: #888fa6; // приглушённый для комментариев
$primary-button-text-color: #181a20;
$code-highlight-background: #23262f;