298:7a103296a019
Anton Shestakov <av6@dwimlabs.net>, Wed, 20 Sep 2017 11:25:26 +0800
viewer: use two columns for info lists on check page for small screens too Since lists themselves switch to one column on small screens, there's enough space for both of them side by side.

next change 299:18a3583a520a
previous change 279:aad01b33703d

templates/base.html

Permissions: -rw-r--r--

Other formats: Feeds:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% block title %}{% end %}{% block extra-title %} - Cat and Owl's online linter{% end %}</title>
{% block alternate %}{% end %}
<link rel="shortcut icon" href="/static/favicon-cat.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/uikit/2.27.4/css/uikit.almost-flat.min.css" integrity="sha384-sTlSQe7oxh+w7nOl63yge2IiC/ThewJ0s0y8hwPTikkobCXnG/Gi29VcY8mLdqdl" crossorigin="anonymous">
<link rel="stylesheet" href="/static/candolint.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js" integrity="sha384-rY/jv8mMhqDabXSo+UCggqKtdmBfd3qC2/KvyTDNQ6PcUJXaxK1tMepoQda4g5vB" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/uikit/2.27.4/js/uikit.min.js" integrity="sha384-VbNYNtAJFhyFCXc5McpfbfoDYLd7QRxCrCbF2EgoMKb/GGqJN7fcAazTBKUyP/6m" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.18.1/moment.min.js" integrity="sha384-DRe+1gYJauFEenXeWS8TmYdBmDUqnR5Rcw7ax4KTqOxXWd4NAMP2VPU5H69U7yP9" crossorigin="anonymous"></script>
</head>
<body>
<nav class="uk-navbar uk-navbar-attached navbar">
<div class="uk-container uk-container-center">
<a class="uk-navbar-brand brand" href="/">{#
#}<span class="trigger">
Cat and Owl's
<span class="mascots">
<img src="/static/mascot-cat.svg">
<img src="/static/mascot-owl.svg">
</span>
</span>
online linter
</a>
</div>
</nav>
{% block content %}{% end %}
<script src="/static/candolint.js"></script>
</body>
</html>