github.com/cs3org/reva/v2@v2.27.7/docs/config.toml (about) 1 baseURL = "/" 2 title = "Reva" 3 4 enableRobotsTXT = true 5 6 # Hugo allows theme composition (and inheritance). The precedence is from left to right. 7 theme = ["docsy"] 8 9 # Will give values to .Lastmod etc. 10 enableGitInfo = true 11 12 # Language settings 13 contentDir = "content/en" 14 defaultContentLanguage = "en" 15 defaultContentLanguageInSubdir = false 16 # Useful when translating. 17 enableMissingTranslationPlaceholders = true 18 19 disableKinds = ["taxonomy", "taxonomyTerm"] 20 21 # Highlighting config 22 pygmentsCodeFences = true 23 pygmentsUseClasses = false 24 # Use the new Chroma Go highlighter in Hugo. 25 pygmentsUseClassic = false 26 #pygmentsOptions = "linenos=table" 27 # See https://help.farbox.com/pygments.html 28 pygmentsStyle = "tango" 29 30 # Configure how URLs look like per section. 31 [permalinks] 32 blog = "/:section/:year/:month/:day/:slug/" 33 34 ## Configuration for BlackFriday markdown parser: https://github.com/russross/blackfriday 35 [blackfriday] 36 plainIDAnchors = true 37 hrefTargetBlank = true 38 angledQuotes = false 39 latexDashes = true 40 41 # Image processing configuration. 42 [imaging] 43 resampleFilter = "CatmullRom" 44 quality = 75 45 anchor = "smart" 46 47 [services] 48 [services.googleAnalytics] 49 # Comment out the next line to disable GA tracking. Also disables the feature described in [params.ui.feedback]. 50 # id = "UA-00000000-0" 51 52 # Language configuration 53 54 [languages] 55 [languages.en] 56 #title = "" 57 description = "An interoperability platform" 58 languageName ="English" 59 # Weight used for sorting. 60 weight = 1 61 62 # Everything below this are Site Params 63 64 [params] 65 copyright = "The Reva Authors" 66 #privacy_policy = "github.com/cs3org/" 67 68 # First one is picked as the Twitter card image if not set on page. 69 # images = ["images/project-illustration.png"] 70 71 # Menu title if your navbar has a versions selector to access old versions of your site. 72 # This menu appears only if you have at least one [params.versions] set. 73 version_menu = "Releases" 74 75 # Repository configuration (URLs for in-page links to opening issues and suggesting changes) 76 github_repo = "https://github.com/cs3org/reva" 77 # An optional link to a related project repo. For example, the sibling repository where your product code lives. 78 github_project_repo = "https://github.com/cs3org/reva" 79 80 # Specify a value here if your content directory is not in your repo's root directory 81 github_subdir = "docs" 82 83 # Google Custom Search Engine ID. Remove or comment out to disable search. 84 # gcs_engine_id = "010913146518163072247:tinkle2veql" 85 86 # Enable Algolia DocSearch 87 algolia_docsearch = true 88 89 # User interface configuration 90 [params.ui] 91 # Enable to show the side bar menu in its compact state. 92 sidebar_menu_compact = true 93 # Set to true to disable breadcrumb navigation. 94 breadcrumb_disable = false 95 # Set to true to hide the sidebar search box (the top nav search box will still be displayed if search is enabled) 96 sidebar_search_disable = true 97 98 # Set to false if you don't want to display a logo (/assets/icons/logo.svg) in the top nav bar 99 navbar_logo = true 100 # Set to true to disable the About link in the site footer 101 footer_about_disable = true 102 103 # Adds a H2 section titled "Feedback" to the bottom of each doc. The responses are sent to Google Analytics as events. 104 # This feature depends on [services.googleAnalytics] and will be disabled if "services.googleAnalytics.id" is not set. 105 # If you want this feature, but occasionally need to remove the "Feedback" section from a single page, 106 # add "hide_feedback: true" to the page's front matter. 107 [params.ui.feedback] 108 enable = false 109 110 # The responses that the user sees after clicking "yes" (the page was helpful) or "no" (the page was not helpful). 111 yes = 'Glad to hear it! Please <a href="https://github.com/USERNAME/REPOSITORY/issues/new">tell us how we can improve</a>.' 112 no = 'Sorry to hear that. Please <a href="https://github.com/USERNAME/REPOSITORY/issues/new">tell us how we can improve</a>.' 113 114 [params.links] 115 # End user relevant links. These will show up on left side of footer and in the community page if you have one. 116 #[[params.links.user]] 117 #name = "User mailing list" 118 #url = "https://example.org/mail" 119 #icon = "fa fa-envelope" 120 #desc = "Discussion and help from your fellow users" 121 #[[params.links.user]] 122 # name ="Twitter" 123 # url = "https://example.org/twitter" 124 # icon = "fab fa-twitter" 125 # desc = "Follow us on Twitter to get the latest news!" 126 #[[params.links.user]] 127 # name = "Stack Overflow" 128 # url = "https://example.org/stack" 129 # icon = "fab fa-stack-overflow" 130 # desc = "Practical questions and curated answers" 131 [[params.links.user]] 132 name = "Gitter" 133 url = "https://gitter.im/cs3org/reva" 134 icon = "fab fa-gitter" 135 desc = "Chat with us!" 136 # Developer relevant links. These will show up on right side of footer and in the community page if you have one. 137 [[params.links.developer]] 138 name = "GitHub" 139 url = "https://github.com/cs3org/reva" 140 icon = "fab fa-github" 141 desc = "Development takes place here!" 142 #[[params.links.developer]] 143 # name = "Slack" 144 # url = "https://example.org/slack" 145 ## icon = "fab fa-slack" 146 # desc = "Chat with other project developers" 147 #[[params.links.developer]] 148 # name = "Developer mailing list" 149 # url = "https://example.org/mail" 150 # icon = "fa fa-envelope" 151 # desc = "Discuss development issues around the project" 152