2014-07-30 10:44:03 -04:00
|
|
|
extends ../layout
|
|
|
|
|
|
|
|
block content
|
2016-03-18 07:31:50 -04:00
|
|
|
.content.content-alt(ng-cloak)
|
2014-07-30 10:44:03 -04:00
|
|
|
.container.wiki
|
2016-03-22 18:16:38 -04:00
|
|
|
.row.template-page-header
|
2016-03-18 07:31:50 -04:00
|
|
|
.col-md-8(ng-cloak)
|
2016-03-22 18:16:38 -04:00
|
|
|
|
|
|
|
.row
|
|
|
|
.col-xs-3.contents(ng-non-bindable)
|
2014-07-31 11:26:02 -04:00
|
|
|
| !{contents.content}
|
2016-03-22 18:16:38 -04:00
|
|
|
.col-xs-9.page(ng-controller="SearchWikiController")
|
|
|
|
.row
|
2016-03-23 12:05:38 -04:00
|
|
|
|
|
|
|
form.project-search.form-horizontal.col-md-12(role="form")
|
|
|
|
.form-group.has-feedback.has-feedback-left.col-md-12
|
|
|
|
input.form-control.col-md-12(type='text', ng-model='searchQueryText', ng-keyup='search()', placeholder="Search help library....")
|
|
|
|
i.fa.fa-search.form-control-feedback-left
|
|
|
|
i.fa.fa-times.form-control-feedback(
|
|
|
|
ng-click="clearSearchText()",
|
|
|
|
style="cursor: pointer;",
|
|
|
|
ng-show="searchQueryText.length > 0"
|
|
|
|
)
|
2016-03-22 18:16:38 -04:00
|
|
|
.row
|
|
|
|
.col-md-12(ng-cloak)
|
|
|
|
ul.list-unstyled
|
|
|
|
li(ng-repeat='hit in hits')
|
2016-03-23 12:05:38 -04:00
|
|
|
.searchResult.thumbnail
|
2016-03-22 18:16:38 -04:00
|
|
|
.row
|
2016-03-23 12:05:38 -04:00
|
|
|
.col-md-12
|
2016-03-22 18:16:38 -04:00
|
|
|
a(ng-href='{{hit.url}}')
|
|
|
|
span(ng-bind-html='hit.name')
|
|
|
|
|
|
|
|
.card(ng-non-bindable)
|
2014-08-01 03:51:01 -04:00
|
|
|
.page-header
|
2014-08-05 12:08:38 -04:00
|
|
|
h1 #{title}
|
2014-08-01 03:51:01 -04:00
|
|
|
|
|
|
|
| !{page.content}
|