arc-web-cli 0.8.2

Create self-contained Arc applications
1
2
<!doctype html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1"><title>{% block title %}Workbench ยท {{ app_name }}{% endblock title %}</title><link rel="stylesheet" href="/public/styles.css"></head>
<body><a class="skip-link" href="#workspace">Skip to workspace</a><div class="workbench"><aside class="rail"><a class="brand brand--rail" href="/admin"><span class="brand__mark">A</span><span>{{ app_name }}</span></a><nav aria-label="Application">{% for item in admin_navigation %}<a href="{{ item.href }}">{{ item.label }}</a>{% endfor %}</nav></aside><header class="topbar"><button class="rail-toggle" aria-label="Toggle navigation">Menu</button><span class="mono">ENV / {{ environment }}</span><span class="status-dot">ONLINE</span>{% for action in admin_actions %}{% if action.method == "post_with_csrf" %}<form method="post" action="{{ action.href }}"><input type="hidden" name="csrf_token" value="{{ csrf_token }}"><button class="button">{{ action.label }}</button></form>{% else %}<a class="button" href="{{ action.href }}">{{ action.label }}</a>{% endif %}{% endfor %}</header><main id="workspace" class="workspace">{% block content %}{% endblock content %}</main></div></body></html>