mirror of
https://github.com/perstarkse/minne.git
synced 2026-04-18 06:59:43 +02:00
refacactor: tidying up server entrypoint
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{% extends 'documentation/base.html' %}
|
||||
{% block article %}
|
||||
<h2>Mobile Friendly Ingression: How to Submit Content from iOS to Minne</h2>
|
||||
<h1>Mobile Friendly Ingression: How to Submit Content from iOS to Minne</h1>
|
||||
<p>Minne is built with simplicity in mind. Whether you wish to save a file, capture a thought, or share a page,
|
||||
submitting content is effortless. Our server provides API access that enables users to perform actions using a
|
||||
personalized API key.</p>
|
||||
|
||||
@@ -4,7 +4,10 @@
|
||||
<!-- Hero Section -->
|
||||
<h1
|
||||
class="text-5xl sm:text-6xl py-4 pt-10 font-extrabold bg-linear-to-r from-primary to-secondary text-transparent bg-clip-text font-satoshi">
|
||||
Simplify Your Knowledge Management
|
||||
Your Second Brain, Built to Remember
|
||||
<div class="text-xl font-light mt-4">
|
||||
Minne <span class="text-base-content opacity-70">/ˈmɪnɛ/ [Swedish: memory]</span>
|
||||
</div>
|
||||
</h1>
|
||||
<p class="text-xl ">
|
||||
Capture, connect, and retrieve your knowledge effortlessly with Minne
|
||||
|
||||
@@ -11,11 +11,18 @@ hx-swap="outerHTML"
|
||||
|
||||
<div class="form-control">
|
||||
<label class="floating-label">
|
||||
<span class="label-text">Entity Name</span>
|
||||
<span class="label-text">Name</span>
|
||||
<input type="text" name="name" value="{{ entity.name }}" class="input input-bordered w-full">
|
||||
</label>
|
||||
</div>
|
||||
|
||||
<div class="form-control">
|
||||
<label class="floating-label">
|
||||
<span class="label-text">Type</span>
|
||||
<input type="text" name="name" value="{{ entity.entity_type}}" class="input input-bordered w-full">
|
||||
</label>
|
||||
</div>
|
||||
|
||||
<input type="text" name="id" value="{{ entity.id }}" class="hidden">
|
||||
|
||||
<div class="form-control">
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<div class="grid sm:grid-cols-2 md:grid-cols-3 gap-4" id="entity-list">
|
||||
<div class="grid sm:grid-cols-2 lg:grid-cols-3 gap-4" id="entity-list">
|
||||
{% for entity in entities %}
|
||||
<div class="card min-w-72 bg-base-100 shadow">
|
||||
<div class="card-body">
|
||||
|
||||
Reference in New Issue
Block a user