Files
devplacepy/devplacepy/templates/tools/index.html
T
retoor 741d7aade6 docs: add block/mute user relations, emoji-sync CLI, and uid indexes
- Add `/block`, `/mute` endpoints with block/unblock and mute/unmute functionality in `routers/relations.py`, hiding blocked users' content everywhere except their own profile while muting only suppresses notifications
- Introduce `devplace emoji-sync` CLI command to regenerate `static/js/emoji-shortcodes.js` from the emoji library, documented in `CLAUDE.md` and wired in `cli.py`
- Create `get_blocked_uids()` database helper and apply it in `content.py` `load_detail()` to filter blocked users' posts from detail views
- Implement `_uid_index()` and `_drop_index()` helpers in `database.py` for unique uid indexes across tables, with `user_relations` added to `SOFT_DELETE_TABLES`
- Document new routes in `AGENTS.md` and `README.md`, including emoji shortcodes rendering behavior distinct from the emoji picker
2026-06-19 08:06:09 +00:00

24 lines
721 B
HTML

{% extends "base.html" %}
{% block extra_head %}
<link rel="stylesheet" href="{{ static_url('/static/css/seo-tool.css') }}">
{% endblock %}
{% block content %}
<div class="tools-page">
<header class="tools-header">
<h1>Tools</h1>
<p>Practical developer tools, available to everyone.</p>
</header>
<div class="tools-grid">
{% for tool in tools %}
<a href="{{ tool.url }}" class="tool-card">
<span class="tool-card-icon" aria-hidden="true">{{ tool.icon }}</span>
<span class="tool-card-name">{{ tool.name }}</span>
<span class="tool-card-desc">{{ tool.description }}</span>
</a>
{% endfor %}
</div>
</div>
{% endblock %}