diff options
author | 2020-01-22 19:06:39 +0100 | |
---|---|---|
committer | 2020-01-22 19:06:39 +0100 | |
commit | 24bc25cc1e80f77924fabf5bbe7e4afeb1980716 (patch) | |
tree | 2fc93078970d605ec69985eed254c6217f5b2239 | |
parent | devbook.xsl: Remove tcolumn element. (diff) | |
download | devmanual-24bc25cc1e80f77924fabf5bbe7e4afeb1980716.tar.gz devmanual-24bc25cc1e80f77924fabf5bbe7e4afeb1980716.tar.bz2 devmanual-24bc25cc1e80f77924fabf5bbe7e4afeb1980716.zip |
devbook.xsl: Load devmanual.css stylesheet last.
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
-rwxr-xr-x | bin/gen-eclass-html.sh | 2 | ||||
-rw-r--r-- | devbook.xsl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bin/gen-eclass-html.sh b/bin/gen-eclass-html.sh index 6ecfe9c..40f8490 100755 --- a/bin/gen-eclass-html.sh +++ b/bin/gen-eclass-html.sh @@ -11,11 +11,11 @@ IFS='' read -r -d '' HEADER << 'EOF' <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>@TITLE@ - Gentoo Development Guide</title> - <link rel="stylesheet" href="../../devmanual.css" type="text/css"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content="The Gentoo Devmanual is a technical manual which covers topics such as writing ebuilds and eclasses, and policies that developers should be abiding by."> <link href="https://assets.gentoo.org/tyrian/bootstrap.min.css" rel="stylesheet" media="screen"> <link href="https://assets.gentoo.org/tyrian/tyrian.min.css" rel="stylesheet" media="screen"> + <link rel="stylesheet" href="../../devmanual.css" type="text/css"> <link rel="icon" href="https://www.gentoo.org/favicon.ico" type="image/x-icon"> </head> <body> diff --git a/devbook.xsl b/devbook.xsl index 8d8d082..2bd73d8 100644 --- a/devbook.xsl +++ b/devbook.xsl @@ -449,11 +449,11 @@ <xsl:with-param name="append">../</xsl:with-param> </xsl:call-template> </xsl:variable> - <link rel="stylesheet" href="{$relative_path_depth_recursion}devmanual.css" type="text/css" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="description" content="The Gentoo Devmanual is a technical manual which covers topics such as writing ebuilds and eclasses, and policies that developers should be abiding by." /> <link href="https://assets.gentoo.org/tyrian/bootstrap.min.css" rel="stylesheet" media="screen" /> <link href="https://assets.gentoo.org/tyrian/tyrian.min.css" rel="stylesheet" media="screen" /> + <link rel="stylesheet" href="{$relative_path_depth_recursion}devmanual.css" type="text/css" /> <link rel="icon" href="https://www.gentoo.org/favicon.ico" type="image/x-icon" /> </head> <body> |