Revision a0712da12574e39c5d8274b36dd14f41d6692f54 authored by Valeri Karpov on 20 December 2021, 00:36:15 UTC, committed by GitHub on 20 December 2021, 00:36:15 UTC
fix: allow use type string in $unset update with aggregation pipeline
2 parent s fb1d42d + b71e551
Raw File
search.pug
extends layout

append style
  script(type="text/javascript" src="https://unpkg.com/unfetch/polyfill")

  style.
    .search-bar {
      margin-top: 1em;
    }

    .search-bar input {
      width: 810px;
      border: 1px solid #ddd;
      padding: 0.25em;
      border-radius: 3px;
    }

    .search-bar button {
      background-color: #777;
      color: white;
      border: 1px solid transparent;
      border-radius: 3px;
      height: 30px;
      width: 30px;
      padding: 0px;
      position: relative;
      top: 7px;
      left: 1px;
    }

    .title {
      font-size: 1.5em;
    }

    ul {
      list-style-type: none;
      padding: 0px;
    }

    .url a {
      font-size: 0.75em;
      color: #777;
      margin-top: 0.5em;
    }

    p {
      margin-top: 0.5em;
      line-height: 1.5em;
    }

block content
  div
    h2 Search

    include includes/native

    div.search-bar
      input#search-input(type="text", placeholder="Search")
      button#search-button
        img(src="/docs/images/search.svg")
    div#results

    script(type="text/javascript" src="/docs/js/search.js")
back to top