0

I found that following websites have the similary style (or theme or template):

It looks lik many tech documentation websites use this style (or template).

My question is: What kind of template is that?

And how I can use it in my tech blog?

Paxz
  • 2,959
  • 1
  • 20
  • 34
zchenkui
  • 139
  • 1
  • 10

2 Answers2

0

They use either Sphinx or mkdocs and most of the time the read the docs template for the design.

PatRiot
  • 21
  • 3
  • The theme can be found at https://sphinx-rtd-theme.readthedocs.io/en/latest/, or on GitHub at https://github.com/rtfd/sphinx_rtd_theme. – Daniel H Jan 24 '19 at 03:21
0

If you view source on your first example, keras.io, you can see the tag

<link rel="stylesheet" href="css/theme.css" type="text/css" />

Looking at the linked file, you see the comment

/*
 * This file is copied from the upstream ReadTheDocs Sphinx
 * theme. To aid upgradability this file should *not* be edited.
 * modifications we need should be included in theme_extra.css.
 *
 * https://github.com/rtfd/sphinx_rtd_theme
 */

So I'd recommend checking out https://github.com/rtfd/sphinx_rtd_theme, and the page it links to about the theme, https://github.com/rtfd/sphinx_rtd_theme.

Daniel H
  • 7,223
  • 2
  • 26
  • 41