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: Sun, 27 Jul 2025 10:40:09 GMT
via: 1.1 varnish
x-served-by: cache-bom-vanm7210067-BOM
x-cache: MISS
x-cache-hits: 0
x-timer: S1753612808.011012,VS0,VE1205
vary: Accept-Encoding
x-fastly-request-id: 6100795a8c6f69969609e9d5e95c0f6f3c0d843b
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: 142F:179E91:1D2509:4D66E5:68860208
content-encoding: gzip
accept-ranges: bytes
date: Sun, 27 Jul 2025 10:40:09 GMT
via: 1.1 varnish
x-served-by: cache-bom-vanm7210073-BOM
x-cache: MISS
x-cache-hits: 0
x-timer: S1753612809.268436,VS0,VE257
vary: Authorization,Accept-Encoding
access-control-allow-origin: *
cross-origin-resource-policy: cross-origin
x-fastly-request-id: bba4941b922e6f6ccd2c07d63bc81de7955e1fef
expires: Sun, 27 Jul 2025 10:45:09 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
}
^
}