{% extends "base.html" %} {% block title %}Go Links{% endblock %} {% block extra_styles %} .links-container { background: white; border-radius: 8px; padding: 20px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); } .link-item { display: flex; justify-content: space-between; padding: 12px; border-bottom: 1px solid #eee; } .link-item:last-child { border-bottom: none; } .link-item:hover { background: #f8f9fa; } .shortcut { font-weight: bold; color: #007bff; text-decoration: none; font-family: monospace; font-size: 14px; } .destination { color: #6c757d; font-size: 13px; word-break: break-all; } .empty { text-align: center; color: #6c757d; padding: 40px; } {% endblock %} {% block content %}

Available Go Links

{% endblock %}