50 lines
1.4 KiB
Cheetah
50 lines
1.4 KiB
Cheetah
{{ define "metadata" }}
|
||
|
||
{{ if .RenderedNote }}
|
||
<aside class="metadata-panel">
|
||
|
||
<section class="meta-block">
|
||
<h3>Tags</h3>
|
||
<form method="POST" action="/notes/{{ .Note.ID }}/tags" class="tag-form">
|
||
<input type="text" name="tag" class="tag-input" placeholder="Add tag">
|
||
<input type="submit" value="add" class="tag-submit" />
|
||
</form>
|
||
<div class="meta-tags">
|
||
{{ range .Note.Tags }}
|
||
<form method="POST" action="/notes/{{ $.Note.ID }}/tags/{{ . }}" class="tag-remove-form">
|
||
<button type="submit" class="tag">{{ . }} ×</button>
|
||
</form>
|
||
{{ end }}
|
||
</div>
|
||
</section>
|
||
|
||
<section class="meta-block">
|
||
<h3>File Info</h3>
|
||
<ul class="meta-list">
|
||
<li><strong>Last Modified:</strong>{{ .Note.GetUpdateDateRep }}</li>
|
||
<li><strong>Size:</strong> {{ .Note.Size }}</li>
|
||
<li><strong>Hash:</strong> {{ .Note.ID }}</li>
|
||
</ul>
|
||
</section>
|
||
|
||
<section class="meta-block">
|
||
<h3>Category</h3>
|
||
<div class="meta-category">Software Engineering</div>
|
||
</section>
|
||
|
||
<section class="meta-block">
|
||
<h3>Document Stats</h3>
|
||
<ul class="meta-list">
|
||
<li><strong>Word Count:</strong> 542</li>
|
||
<li><strong>Unique Words:</strong> 211</li>
|
||
</ul>
|
||
|
||
<!-- Placeholder for future stats such as word cloud -->
|
||
<div class="meta-stats-placeholder">
|
||
<p>Word cloud / stats visualization<br>(future)</p>
|
||
</div>
|
||
</section>
|
||
</aside>
|
||
{{ end }}
|
||
{{ end }}
|