CARVIEW |
Select Language
HTTP/2 301
location: https://raw.githubusercontent.com/ServiceStack/ServiceStack.Examples/master/src/Docs/Views/Search.md
accept-ranges: bytes
age: 0
date: Wed, 30 Jul 2025 05:52:10 GMT
via: 1.1 varnish
x-served-by: cache-bom-vanm7210082-BOM
x-cache: MISS
x-cache-hits: 0
x-timer: S1753854729.065372,VS0,VE1228
vary: Accept-Encoding
x-fastly-request-id: a2ce3e9e376096e17116e61c0c1c6993eca25475
content-length: 0
HTTP/2 200
cache-control: max-age=300
content-security-policy: default-src 'none'; style-src 'unsafe-inline'; sandbox
content-type: text/plain; charset=utf-8
etag: W/"f4112f6a18cf215bba070df1c4963c86b69c111740defcffb4e0a04c30099db4"
strict-transport-security: max-age=31536000
x-content-type-options: nosniff
x-frame-options: deny
x-xss-protection: 1; mode=block
x-github-request-id: 8F01:5801E:224A15:4E03DF:6889B308
content-encoding: gzip
accept-ranges: bytes
date: Wed, 30 Jul 2025 05:52:10 GMT
via: 1.1 varnish
x-served-by: cache-bom-vanm7210034-BOM
x-cache: MISS
x-cache-hits: 0
x-timer: S1753854730.361732,VS0,VE252
vary: Authorization,Accept-Encoding
access-control-allow-origin: *
cross-origin-resource-policy: cross-origin
x-fastly-request-id: fa4f03b443aab393049c1af808cd29a69375256e
expires: Wed, 30 Jul 2025 05:57:10 GMT
source-age: 0
content-length: 306
@var Title = "Search results for " + Model.Query
@if (Model.Results.Count == 0) {
#### Your search did not match any documents.
## Suggestions:
- Make sure all words are spelled correctly.
- Try different keywords.
- Try more general keywords.
- Try fewer keywords.
} else {
#### Showing Results 1 - @Model.Results.Count
^
@foreach page in Model.Results {
### @page.Category > [@page.Name](@page.AbsoluteUrl)
@page.Content
}
^
}