feat: VERSION bumb
This commit is contained in:
@ -1,7 +1,14 @@
|
||||
# donniemarko
|
||||
|
||||
Version: 0.1.0
|
||||
|
||||
Knowledge Management System over markdown notes.
|
||||
|
||||
## Release 0.1.0
|
||||
- Core web UI for browsing notes
|
||||
- Tagging system (add/remove, filter, search)
|
||||
- SQLite-backed storage with tests
|
||||
|
||||
`donniemarko` works as a read-only (for now) interface over a set of markdown notes. Its goals are:
|
||||
- Ensuring notes intented to be published online are correctly formatted
|
||||
- Rendering the notes in a printable-friendly format, taking advantage of HTML/CSS styling
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
<header>
|
||||
<h1 class="main-logo"><a href="/">Donnie Marko</a></h1>
|
||||
<form method="GET" action="/" class="search-form">
|
||||
<input type="text" name="search" class="search-bar" placeholder="Search... (empty query to clear)">
|
||||
<input type="text" name="search" class="search-bar" placeholder="Search notes or tags... (empty query to clear)">
|
||||
<input type="submit" value="ok"/>
|
||||
</form>
|
||||
<form method="GET" action="/">
|
||||
@ -22,7 +22,7 @@
|
||||
{{ end }}
|
||||
|
||||
{{ define "renderSearch" }}
|
||||
{{ if ne .SearchTerm "" }}<h2>Matching results for query '{{ .SearchTerm }}'</h2>{{ end }}
|
||||
{{ if ne .SearchTerm "" }}<h2>Matching results for query '{{ .SearchTerm }}' (notes or tags)</h2>{{ end }}
|
||||
{{ if ne .TagFilter "" }}<h2>Filtered by tag '{{ .TagFilter }}'</h2>{{ end }}
|
||||
<ul class="search-results">
|
||||
{{ range .Notes }}
|
||||
|
||||
Reference in New Issue
Block a user