Skip to content

Commit

Permalink
reindente
Browse files Browse the repository at this point in the history
  • Loading branch information
trinity-1686a committed Nov 7, 2019
1 parent d02dcd0 commit 01fed61
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions templates/search/index.rs.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,49 +16,49 @@ <h1>@i18n!(ctx.1, "Search")</h1>

@(Input::new("title", i18n!(ctx.1, "Article title matching these words"))
.set_prop("placeholder", i18n!(ctx.1, "Title"))
.optional()
.optional()
.html(ctx.1))
@(Input::new("subtitle", i18n!(ctx.1, "Subtitle matching these words"))
.set_prop("placeholder", i18n!(ctx.1, "Subtitle"))
.optional()
.optional()
.html(ctx.1))
@(Input::new("content", i18n!(ctx.1, "Content macthing these words"))
.set_prop("placeholder", i18n!(ctx.1, "Body content"))
.optional()
.optional()
.html(ctx.1))
@(Input::new("after", i18n!(ctx.1, "From this date"))
.input_type("date")
.set_prop("max", now)
.optional()
.optional()
.html(ctx.1))
@(Input::new("before", i18n!(ctx.1, "To this date"))
.input_type("date")
.set_prop("max", now)
.optional()
.optional()
.html(ctx.1))
@(Input::new("tag", i18n!(ctx.1, "Containing these tags"))
.set_prop("placeholder", i18n!(ctx.1, "Tags"))
.optional()
.optional()
.html(ctx.1))
@(Input::new("instance", i18n!(ctx.1, "Posted on one of these instances"))
.set_prop("placeholder", i18n!(ctx.1, "Instance domain"))
.optional()
.optional()
.html(ctx.1))
@(Input::new("author", i18n!(ctx.1, "Posted by one of these authors"))
.set_prop("placeholder", i18n!(ctx.1, "Author(s)"))
.optional()
.optional()
.html(ctx.1))
@(Input::new("blog", i18n!(ctx.1, "Posted on one of these blogs"))
.set_prop("placeholder", i18n!(ctx.1, "Blog title"))
.optional()
.optional()
.html(ctx.1))
@(Input::new("lang", i18n!(ctx.1, "Written in this language"))
.set_prop("placeholder", i18n!(ctx.1, "Language"))
.optional()
.optional()
.html(ctx.1))
@(Input::new("license", i18n!(ctx.1, "Published under this license"))
.set_prop("placeholder", i18n!(ctx.1, "Article license"))
.optional()
.optional()
.html(ctx.1))
</details>
<input type="submit" value="@i18n!(ctx.1, "Search")"/>
Expand Down

0 comments on commit 01fed61

Please sign in to comment.