feat(ops): kubernetes deployment #4
@@ -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>
|
||||
|
@@ -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") }}">
|
||||
|
@@ -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;
|
||||
|
||||
|
Reference in New Issue
Block a user