github.com/golang/dep@v0.5.4/website/siteConfig.js (about)

     1  /* List of projects/orgs using your project for the users page */
     2  const users = [
     3  ];
     4  
     5  const siteConfig = {
     6    title: 'dep' /* title for your website */,
     7    tagline: 'Dependency management for Go',
     8    url: 'https://golang.github.io' /* your website url */,
     9    baseUrl: '/dep/' /* base url for your project */,
    10    editUrl: 'https://github.com/golang/dep/edit/master/docs/',
    11    projectName: 'dep',
    12    headerLinks: [
    13      {doc: 'introduction', label: 'Documentation'},
    14      {blog: true, label: 'Blog'},
    15    ],
    16    users,
    17    /* path to images for header/footer */
    18    headerIcon: 'docs/assets/DigbyFlat.svg',
    19    footerIcon: 'docs/assets/DigbyShadowsScene2.svg',
    20    favicon: 'docs/assets/DigbyScene2Flat.png',
    21    /* colors for website */
    22    colors: {
    23      secondaryColor: '#243f75',
    24      primaryColor: '#375eab',
    25    },
    26    algolia: {
    27      apiKey: "0b4cdbc6bb41efe17ed7176afcb23441",
    28      indexName: "golang_dep"
    29    },
    30    // This copyright info is used in /core/Footer.js and blog rss/atom feeds.
    31    copyright:
    32      'Copyright © ' +
    33      new Date().getFullYear() +
    34      ' The Go Authors',
    35     organizationName: 'golang', // or set an env variable ORGANIZATION_NAME
    36     projectName: 'dep', // or set an env variable PROJECT_NAME
    37    highlight: {
    38      // Highlight.js theme to use for syntax highlighting in code blocks
    39      theme: 'default',
    40    },
    41    scripts: ['https://buttons.github.io/buttons.js'],
    42    // You may provide arbitrary config keys to be used as needed by your template.
    43    repoUrl: 'https://github.com/golang/dep',
    44  };
    45  
    46  module.exports = siteConfig;