diff --git a/test/test_rst/test1.rst b/test/test_rst/test1.rst index d039b0d..6685f00 100644 --- a/test/test_rst/test1.rst +++ b/test/test_rst/test1.rst @@ -57,6 +57,180 @@ how or more paragraphs or body elements, indented relative to the term. +Theme Options +-------------- + +The following theme options are accepted in the theme. + +Variable Options +''''''''''''''''' + +.. csv-table:: + :header: "Option ", "Description" + + "project_icon ", "The abolute or relative (to _static folder) path to the image to use as the theme icon. This is not the same as favicon. If the favicon is set using the variable `html_favicon` and the project_icon is not set. The project_icon value will be the value of the favicon." + "index_is_single ", "This option is to indicate if any **index** page does not have sidebars. It is True by default which means any index page will not have any sidebar. To add sidebars to index pages set the value to False in `html_theme_optionss`." + "show_navigators_in_index ", "The theme option to decide whether to show the bottom navigation buttons (index, next, previous) in any **index** page. By default it is False. To show the navigation buttons in index pages set the value to True in the `html_theme_optionss`." + "navbar_links ", "The navbar menus to show at the header of the page, each of the entry should be a tupple of the name and the link e.g for a menu that link to twitter and github. + + .. code:: python + + html_theme_options = { + 'navbar_links': [ + ('Twitter', 'https://twitter.com/iamthecarisma'), + ('Github', 'https://github.com/Thecarisma/themata/') + ] + } + + " + "has_left_sidebar ", "By default this theme renders the left sidebar. The left sidebar shows the documentation toc tree. To not shouw the left sidebar in all the pages set the value to False in the `html_theme_options`." + "has_right_sidebar ", "By default this theme renders the right sidebar. The left sidebar shows the table of content for the active page, the previous and next topic and the link to the page source. To not shouw the right sidebar in all the pages set the value to False in the `html_theme_options`." + "footer_menus ", "The footer menu to show at the bottom of the page, each of the footer should contain the 'title' and the array of the 'menu_items'. + + .. code:: python + + html_theme_options = { + 'footer_menus': [ + { + 'title': 'Contact', + 'menu_items': [ + { + 'link': 'https://thecarisma.github.io/', + 'title': 'https://thecarisma.github.io/' + }, + { + 'link': 'tel:911', + 'title': '12345678998' + } + ] + }, + { + 'title': 'Custom Pages', + 'menu_items': [ + { + 'link': 'leftpage.html', + 'title': 'Left Page' + }, + { + 'link': 'singletpage.html', + 'title': 'Single Page' + } + ] + } + ] + } + + " + "social_icons ", "The social icons to show at the foot of the page, each of the social link should be a tupple of the favicon icon and the link e.g for a social icon of twitter and github. + + .. code:: python + + html_theme_options = { + 'social_icons': [ + ('fab fa-twitter', 'https://twitter.com/iamthecarisma'), + ('fab fa-github', 'https://github.com/Thecarisma/themata/') + ] + } + + " + "show_navigators ", "Theme option to decide whether to show the bottom navigation buttons (index, previous and next) at the bottom of each of the generated pages. The default is True which means the navigators is shown. To hide the navigation set the value of show_navigators to False in `html_theme_options`." + "right_sidebar_only ", "An array list of pages name to have only the right sidebar. Any pagename added to this array will have ONLY the right sidebar regardless of other sidebar options. E.g. + + .. code:: python + + html_theme_options = { + 'right_sidebar_only': [ + 'otherpages/rightpage' + ] + } + + The name of the page must be relative to the index project root folder. Another way to make a page have only the right sidebar is to add the extension **.right** to it file name e.g. **test.right.rst**" + "left_sidebar_only ", "An array list of pages name to have only the left sidebar. Any pagename added to this array will have ONLY the left sidebar regardless of other sidebar options. E.g. + + .. code:: python + + html_theme_options = { + 'left_sidebar_only': [ + 'otherpages/leftpage' + ] + } + + The name of the page must be relative to the index project root folder. Another way to make a page have only the left sidebar is to add the extension **.left** to it file name e.g. **test.left.rst**" + "no_sidebar ", "An array list of pages name to have no sidebar. Any pagename added to this array will have no sidebar regardless of other sidebar options. E.g. + + .. code:: python + + html_theme_options = { + 'no_sidebar': [ + 'otherpages/singlepage' + ] + } + + The name of the page must be relative to the index project root folder. Another way to make a page have no sidebar is to add the extension **.single** to it file name e.g. **test.single.rst**" + "collapsible_sidebar ", "A boolean value to determine whether the left sidebar should be collapsible or not." + "collapsible_sidebar_display ", "The left sidebar unordered list display css value. Set to 'none' if the list should be hidden by default when collapsible_sidebar is set to True, if collapsible_sidebar is set to False rember to remove this option or set it to 'block'." + "source_root ", "The full link to the web root folder where the source of the documentation source is e.g. the documentation github repo" + "source_root_edit_text ", "The text to show on the button that link to the page source in a repository. The default is '**Edit this page**'" + "metadata ", "Set the metadata values of the generated website. The object should contain any, more or all of the keys, enable, url, type, title, description, image, keywords, author. E.g. + + .. code:: python + + html_theme_options = { + 'metadata': { + 'enable': True, + 'url': 'https://thecarisma.github.io/themata', + 'type': 'website', + 'title': 'Set of Highly customizable sphinx themes.', + 'description': 'Themata package contains different sphinx theme that can be easily customized to look like a complete website or just a documentation webpage.', + 'image': 'https://raw.githubusercontent.com/Thecarisma/themata/main/docs/images/themata.small.png', + 'keywords': 'python, sphinx, thecarisma, themata, documentation, markdown, rst, themes', + 'author': 'Adewale Azeez' + } + } + + The result of the theme option above is + + .. code:: text + + + + + + + + + + + If the value of enable is False or not specified the metadata will not be generated." + "twitter_metadata ", "Set the twitter metadata values of the generated website. The object should contain any, more or all of the keys, enable, card, site, creator, title, description, image. E.g. + + .. code:: python + + html_theme_options = { + 'twitter_metadata': { + 'enable': True, + 'card': 'summary', + 'site': '@iamthecarisma', + 'creator': '@iamthecarisma', + 'title': 'Set of Highly customizable sphinx themes.', + 'description': 'Themata package contains different sphinx theme that can be easily customized to look like a complete website or just a documentation webpage.', + 'image': 'https://raw.githubusercontent.com/Thecarisma/themata/main/docs/images/themata.small.png', + } + } + + The result of the theme option above is + + .. code:: text + + + + + + + + + If the value of enable is False or not specified the metadata will not be generated." + Field lists: `````````````````` diff --git a/themata/milkish/static/css/milkiish.css_t b/themata/milkish/static/css/milkiish.css_t index 8c2996d..413d506 100644 --- a/themata/milkish/static/css/milkiish.css_t +++ b/themata/milkish/static/css/milkiish.css_t @@ -212,6 +212,7 @@ pre { margin-left: 18%; margin-right: 10px; line-height: 3vh; + overflow-y:hidden; } .sidebar-left ul {