diff --git a/static/default.css b/static/default.css index 4eb4cb0..81b0c24 100644 --- a/static/default.css +++ b/static/default.css @@ -11,10 +11,10 @@ .modal__title_small { font-size: 1.5rem; } .modal__confirmation-msg { margin: 0 0 .5rem 0; } -.hypha-list, .primitive-search__results { padding-left: 0; } -.hypha-list__entry, .primitive-search__entry { list-style-type: none; } -.hypha-list__link, .primitive-search__link { text-decoration: none; display: inline-block; padding: .25rem; } -.hypha-list__link:hover, .primitive-search__link:hover { text-decoration: underline; } +.hypha-list, .title-search__results { padding-left: 0; } +.hypha-list__entry, .title-search__entry { list-style-type: none; } +.hypha-list__link, .title-search__link { text-decoration: none; display: inline-block; padding: .25rem; } +.hypha-list__link:hover, .title-search__link:hover { text-decoration: underline; } .hypha-list__amnt-type { font-size: smaller; color: #999; } /* General element positions, from small to big */ diff --git a/views/stuff.qtpl b/views/stuff.qtpl index cd593c5..a22e677 100644 --- a/views/stuff.qtpl +++ b/views/stuff.qtpl @@ -23,7 +23,7 @@ {%- for _, link := range cfg.HeaderLinks -%}
  • {%s link.Display %}
  • {%- endfor -%} -
    +
    {%s= UserMenuHTML(u) %} @@ -47,15 +47,15 @@ {% endfunc %} -{% func PrimitiveSearchHTML(query string, generator func(string) <-chan string) %} +{% func TitleSearchHTML(query string, generator func(string) <-chan string) %}
    -
    +

    Search results for ‘{%s query %}’

    Every hypha name has been compared with the query. Hyphae that have matched the query are listed below.

    -
    diff --git a/views/stuff.qtpl.go b/views/stuff.qtpl.go index d456cf4..9c1d33a 100644 --- a/views/stuff.qtpl.go +++ b/views/stuff.qtpl.go @@ -80,8 +80,8 @@ func StreamBaseHTML(qw422016 *qt422016.Writer, title, body string, u *user.User, //line views/stuff.qtpl:25 } //line views/stuff.qtpl:25 - qw422016.N().S(`
    - + qw422016.N().S(` +
    `) //line views/stuff.qtpl:29 @@ -145,25 +145,25 @@ func BaseHTML(title, body string, u *user.User, headElements ...string) string { } //line views/stuff.qtpl:50 -func StreamPrimitiveSearchHTML(qw422016 *qt422016.Writer, query string, generator func(string) <-chan string) { +func StreamTitleSearchHTML(qw422016 *qt422016.Writer, query string, generator func(string) <-chan string) { //line views/stuff.qtpl:50 qw422016.N().S(`
    -
    +

    Search results for ‘`) //line views/stuff.qtpl:53 qw422016.E().S(query) //line views/stuff.qtpl:53 qw422016.N().S(`’

    Every hypha name has been compared with the query. Hyphae that have matched the query are listed below.

    -
      +
        `) //line views/stuff.qtpl:56 for hyphaName := range generator(query) { //line views/stuff.qtpl:56 qw422016.N().S(` -
      • - +