github.com/paganotoni/doco@v1.0.7/internal/testdata/complete_meta.md (about)

     1  ----
     2  # Name of the website, is used on the pages description and 
     3  # In the meta tags.
     4  name: Doco
     5  description: "Doco is a CLI tool to generate static documentation websites from markdown files."
     6  keywords: "keywords,for,seo"
     7  
     8  # Index defines where the pages in the root will be positioned.
     9  index: -1
    10  favicon: "/assets/favicon.png"
    11  
    12  logo: 
    13    src: "/assets/logo.png"
    14    link: "/"
    15  
    16  
    17  # Announcement is shown on the top of the site
    18  # next to the site logo
    19  announcement: 
    20    text: "Check our Github repository."
    21    link: "https://github.com/paganotoni/doco"
    22  
    23  # Social links are shown on the top right of the site
    24  # next to the CTA button.
    25  github: "https://github.com/paganotoni/doco" 
    26  
    27  # External links go in the top navigation bar.
    28  external_links:
    29    - text: "Documentation"
    30      link: "/"
    31  
    32  # QuickLinks go on top of the left navigation bar and
    33  # show on the quick search modal by default.
    34  quick_links:
    35    - text: "Documentation"
    36      link: "/"
    37      # Icons use google material icons
    38      icon: "menu_book"
    39    - text: "Repository"
    40      link: "https://github.com/paganotoni/doco"
    41      icon: "code"
    42  
    43  
    44  # CTA button shows on the top right of the site.
    45  # cta: 
    46  #  text: "Star on Github"
    47  #  link: "https://github.com/paganotoni/doco"
    48  
    49  # Shows on each of the documentation pages
    50  # $YEAR is replaced with the current year.
    51  copy: "© $YEAR Doco"
    52  ----