1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- # configuration for the tag-oriented tagblog theme
- tagblog:
- # The site logo appears in the top menu bar, centered in landscape.
- # It's also a link tot he site root. CSS is set to make it look pixelated.
- # Comment out to disable
- site_logo: /themes/tagblog/res/tagblog-logo-eeeeee.png
- excerpt: true # display excerpt of article in index list of pages ("blogroll") - affects page.meta.excerpt, too
- excerpt_length: 300 # characters of automatic article excerpt to show on blog roll (see includes/postlistitem.twig.example) - set to 0 to disable - does not affect meta.excerpt
- excerpt_terminator: ..... # string to ellipsize excerpt
- tagsort:
- method: alphabetical # numerical or alphabetical
- reverse: false
- tagcount:
- enabled: true # show total count number after tag
- taglist:
- enabled: false
- title: Taglist
- tagcloud:
- enabled: true
- title: Tags
- # tags occuring that many times get the largest font size, no increase beyond that:
- maxoccur: 10
- fontsizemax: 2.5 # in em
- fontsizemin: 1 # in em
- paging:
- items: 8 # positive integer - or 0 (zero) to diable
- # You can have pagination at the top, or bottom, or both:
- top: false
- bottom: true
- feed:
- enabled: true
- content: false # set to true to enable full content in feed entries
- search:
- enabled: true
- minlength: 2 # minimum string length of search query
- # you can include extra content to the <head> section of index.twig:
- #custom_header: includes/custom_header.twig
- #404: crt # there's various 404-*.css files in the theme's css folder. the string will be used like this: themes/tagblog/css/404-<string>.css
- # comment out or remove to use themes/tagblog/css/404.css
- TableOfContent:
- enabled: true
- depth: 6 # default: 3
- min_headers: 3 # default: 3
- top_txt: '-up-' # default: Top
- caption: Table of Contents # default: Table of contents
- template: post # only create TOC and/or top links for pages with this twig template. If unset, or set to "all", always create top links, and/or toc.
|