diff options
author | Adrian Kummerlaender | 2014-10-18 22:36:35 +0200 |
---|---|---|
committer | Adrian Kummerlaender | 2014-10-18 22:36:35 +0200 |
commit | 14ee0d2e8bba56e24a28e9a824731fddc9b2b7a5 (patch) | |
tree | 15a2a8d436d2ff1a48ac06fe718f54fd4c919e02 /utility | |
parent | acacfda54016cbd4437d1ccaa609a52e9c1739d0 (diff) | |
download | Overview-14ee0d2e8bba56e24a28e9a824731fddc9b2b7a5.tar Overview-14ee0d2e8bba56e24a28e9a824731fddc9b2b7a5.tar.gz Overview-14ee0d2e8bba56e24a28e9a824731fddc9b2b7a5.tar.bz2 Overview-14ee0d2e8bba56e24a28e9a824731fddc9b2b7a5.tar.lz Overview-14ee0d2e8bba56e24a28e9a824731fddc9b2b7a5.tar.xz Overview-14ee0d2e8bba56e24a28e9a824731fddc9b2b7a5.tar.zst Overview-14ee0d2e8bba56e24a28e9a824731fddc9b2b7a5.zip |
Added basic styling and expanded commit output
* added CSS style based on my personal blog
** modified master and stream templates accordingly
* added date-time, repository name and commit hash output
* removed single-repository log export as it is not the purpose of this application
Diffstat (limited to 'utility')
-rw-r--r-- | utility/master.xsl | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/utility/master.xsl b/utility/master.xsl index 077c9e3..4f3597c 100644 --- a/utility/master.xsl +++ b/utility/master.xsl @@ -18,14 +18,15 @@ <xsl:template match="/"> <html> -<head> - <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> - <meta name="robots" content="all"/> - <meta name="viewport" content="width=device-width,initial-scale=1.0"/> -</head> -<body> - <xsl:apply-templates /> -</body> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta name="viewport" content="width=device-width,initial-scale=1.0"/> + + <link rel="stylesheet" type="text/css" href="/main.css" /> + </head> + <body> + <xsl:apply-templates /> + </body> </html> </xsl:template> |