github.com/thanos-io/thanos@v0.32.5/website/hugo.yaml (about)

     1  title: "Thanos - Highly available Prometheus setup with long term storage capabilities"
     2  # This is controlled by makefile: baseURL: "https://thanos.io"
     3  languageCode: "en-us"
     4  
     5  enableGitInfo: true
     6  enableEmoji: true
     7  pygmentsCodeFences: true
     8  pygmentsUseClasses: true
     9  
    10  # We use preprocessing script so it will not work as expected anyway.
    11  disableLiveReload: true
    12  googleAnalytics: "UA-137374921-1"
    13  
    14  # So /thanos/docs/b link from /thanos/docs/some/a will be rewritten as ../b
    15  uglyURLs: false
    16  canonifyURLs: true
    17  relativeURL: true
    18  
    19  # NOTE: Hugo is expected to run from `website`
    20  contentDir: "docs-pre-processed"
    21  archetypeDir: "archetypes"
    22  layoutDir: "layouts"
    23  publishDir: "public"
    24  staticDir: "static"
    25  
    26  permalinks:
    27    # Generate those for every file.
    28    # TODO(bwplotka): Move to mdox + fixes to ensure we don't need to manually do this.
    29    # For now we added few entries for advance.
    30    tip: "/:sections/:filename.md"
    31    v0.29: "/:sections/:filename.md"
    32    v0.28: "/:sections/:filename.md"
    33    v0.27: "/:sections/:filename.md"
    34    v0.26: "/:sections/:filename.md"
    35    v0.25: "/:sections/:filename.md"
    36    v0.24: "/:sections/:filename.md"
    37    v0.23: "/:sections/:filename.md"
    38    v0.22: "/:sections/:filename.md"
    39    v0.21: "/:sections/:filename.md"
    40    v0.20: "/:sections/:filename.md"
    41    v0.19: "/:sections/:filename.md"
    42    v0.18: "/:sections/:filename.md"
    43    v0.17: "/:sections/:filename.md"
    44    v0.16: "/:sections/:filename.md"
    45    v0.15: "/:sections/:filename.md"
    46    v0.14: "/:sections/:filename.md"
    47    v0.13: "/:sections/:filename.md"
    48    v0.12: "/:sections/:filename.md"
    49    v0.11: "/:sections/:filename.md"
    50    v0.10: "/:sections/:filename.md"
    51  
    52  params:
    53    SlackInvite: "https://slack.cncf.io"
    54    GithubUser: "thanos-io"
    55    GithubProject: "thanos"
    56    QuayIoUser: "thanos"
    57    QuayIoRepository: "thanos"
    58    DockerHubUser: "thanosio"
    59    DockerHubRepository: "thanos"
    60    TwitterHandle: "ThanosMetrics"
    61    Description: "Highly available Prometheus setup with long term storage capabilities."
    62  
    63  # TOC to include h1 - h4
    64  markup:
    65    tableOfContents:
    66      endLevel: 4
    67      ordered: false
    68      startLevel: 1
    69    goldmark:
    70      renderer:
    71        # We want to be able to put our own HTML.
    72        unsafe: true
    73  
    74  summaryLength: 50