mirror of
https://github.com/khoaliber/khoj.git
synced 2026-03-02 21:19:12 +00:00
- Add a central configuration management page to make management of config details easier - Add relevant api endpoints both for client and server to update/request data as necessary - Attempt to update the favicon
28 lines
679 B
HTML
28 lines
679 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Khoj: Configuration for processor integrations</title>
|
|
<link rel=”stylesheet” href=”static/styles.css”>
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@1/css/pico.min.css">
|
|
</head>
|
|
<body class="data-integration">
|
|
<header class=”header”>
|
|
<h1>Configure your processor integrations for Khoj</h1>
|
|
</header>
|
|
<a href="/config">Go back</a>
|
|
|
|
<div class=”content”>
|
|
{% block content %}
|
|
{% endblock %}
|
|
</div>
|
|
|
|
<footer class=”footer”>
|
|
</footer>
|
|
</body>
|
|
<style>
|
|
body.data-integration {
|
|
padding: 0 10%
|
|
}
|
|
</style>
|
|
</html>
|