8e91e70b05
* remove files that depot already has, or doesn't need * remove links to old source location Change-Id: Idcd9361bfed00289f09af62f5342c4fd8bd04404 Reviewed-on: https://cl.tvl.fyi/c/depot/+/2855 Tested-by: BuildkiteCI Reviewed-by: sterni <sternenseemann@systemli.org>
67 lines
3.7 KiB
HTML
67 lines
3.7 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
|
|
<title>Converse: Search results</title>
|
|
|
|
<!-- TODO -->
|
|
<meta http-equiv="Content-Security-Policy" content="script-src https://code.getmdl.io 'self';">
|
|
<!-- <link rel="shortcut icon" href="images/favicon.png"> -->
|
|
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Ubuntu">
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
|
|
<link rel="stylesheet" href="https://code.getmdl.io/1.3.0/material.blue_grey-orange.min.css" />
|
|
<link rel="stylesheet" href="/static/styles.css">
|
|
</head>
|
|
<body class="converse mdl-base mdl-color-text--grey-700 mdl-color--grey-100">
|
|
<div class="mdl-layout mdl-layout--fixed-header mdl-js-layout mdl-color--grey-100">
|
|
<header class="mdl-layout__header mdl-layout__header--scroll mdl-color--primary-dark">
|
|
<div class="mdl-layout__header-row">
|
|
<a href="/" class="mdl-layout-title mdl-color-text--blue-grey-50 cvs-title">Converse</a>
|
|
<div class="mdl-layout-spacer"></div>
|
|
<div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label mdl-color-text--blue-grey-50 search-field">
|
|
<form method="get" action="/search">
|
|
<input class="mdl-textfield__input" type="search" id="search-query" aria-label="Search" name="query">
|
|
<label class="mdl-textfield__label mdl-color-text--blue-grey-100" for="search-query">Search query...</label>
|
|
<input type="submit" hidden />
|
|
</form>
|
|
</div>
|
|
|
|
<a href="/">
|
|
<button class="mdl-button mdl-js-button mdl-button--raised mdl-button--accent mdl-js-ripple-effect">
|
|
Back to index
|
|
</button>
|
|
</a>
|
|
</div>
|
|
</header>
|
|
<main class="mdl-layout__content">
|
|
<section class="section--center mdl-grid">
|
|
<div class="mdl-cell--12-col">
|
|
<h4>Search results for '{{ query }}':</h4>
|
|
</div>
|
|
{% for result in results %}
|
|
<div class="mdl-card mdl-cell--6-col search-result mdl-shadow--2dp">
|
|
<div class="mdl-card__supporting-text">
|
|
<p>Posted in '{{ result.title }}' by {{ result.author }}:</p>
|
|
<p>{{ result.headline|safe }}</p>
|
|
</div>
|
|
<div class="mdl-card__actions mdl-card--border post-actions">
|
|
<div class="mdl-layout-spacer"></div>
|
|
<a class="mdl-button mdl-js-button mdl-button--fab mdl-button--mini-fab mdl-button--colored" href="/thread/{{ result.thread_id }}#post-{{ result.post_id }}">
|
|
<i class="material-icons">arrow_forward</i>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
</section>
|
|
</main>
|
|
<footer class="mdl-mini-footer">
|
|
<div class="mdl-mini-footer--right-section">
|
|
<p>Powered by <a href="https://code.tvl.fyi/about/web/converse">Converse</a></p>
|
|
</div>
|
|
</footer>
|
|
</div>
|
|
<script src="https://code.getmdl.io/1.3.0/material.min.js"></script>
|
|
</body>
|
|
</html>
|