mirror of https://github.com/Requarks/wiki.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.7 KiB
51 lines
1.7 KiB
|
|
#header-container
|
|
nav.nav.has-shadow.stickyscroll#header
|
|
.nav-left
|
|
block rootNavLeft
|
|
a.nav-item.is-brand(href='/')
|
|
img(src='/favicons/android-icon-96x96.png', alt='Wiki')
|
|
a.nav-item(href='/')
|
|
h1.title Wiki
|
|
.nav-center
|
|
block rootNavCenter
|
|
.nav-item
|
|
p.control(v-bind:class="{ 'is-loading': searchload > 0 }")
|
|
input.input#search-input(type='text', v-model='searchq', @keyup.esc='closeSearch', @keyup.down='moveDownSearch', @keyup.up='moveUpSearch', @keyup.enter='moveSelectSearch', debounce='400', placeholder='Search...')
|
|
span.nav-toggle
|
|
span
|
|
span
|
|
span
|
|
.nav-right.nav-menu
|
|
block rootNavRight
|
|
i.nav-item#notifload
|
|
a.nav-item(href='/history/' + pageData.meta.path)
|
|
| History
|
|
a.nav-item(href='/source/' + pageData.meta.path)
|
|
| Source
|
|
span.nav-item
|
|
a.button(href='/edit/' + pageData.meta.path)
|
|
span.icon
|
|
i.fa.fa-edit
|
|
span Edit
|
|
a.button.is-primary.btn-create-prompt
|
|
span.icon
|
|
i.fa.fa-plus
|
|
span Create
|
|
|
|
.box.searchresults.animated(v-show='searchactive', transition='slide', v-cloak, style={'display':'none'})
|
|
.menu
|
|
p.menu-label
|
|
| Search Results
|
|
ul.menu-list
|
|
li(v-if="searchres.length === 0")
|
|
a: em No results matching your query
|
|
li(v-for='sres in searchres')
|
|
a(href='/{{ sres.document.entryPath }}', v-bind:class="{ 'is-active': searchmovekey === 'res.' + sres.document.entryPath }") {{ sres.document.title }}
|
|
p.menu-label(v-if='searchsuggest.length > 0')
|
|
| Did you mean...?
|
|
ul.menu-list(v-if='searchsuggest.length > 0')
|
|
li(v-for='sug in searchsuggest')
|
|
a(v-on:click="useSuggestion(sug)", v-bind:class="{ 'is-active': searchmovekey === 'sug.' + sug }") {{ sug }}
|
|
|
|
|