diff options
-rw-r--r-- | tools/website.tmpl | 12 | ||||
-rw-r--r-- | web/assets/style.css | 11 |
2 files changed, 22 insertions, 1 deletions
diff --git a/tools/website.tmpl b/tools/website.tmpl index 50152a051..6ae975839 100644 --- a/tools/website.tmpl +++ b/tools/website.tmpl @@ -6,13 +6,23 @@ <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"> <title>$c.projectTitle</title> - <link rel="stylesheet" type="text/css" href="assets/style.css" /> + <link rel="stylesheet" type="text/css" href="assets/style.css?t=2221" /> <link rel="shortcut icon" href="assets/images/favicon.ico"> #if len(rss) > 0: <link href="$rss" title="Recent changes" type="application/atom+xml" rel="alternate"> #end if </head> <body> + <div id="bountysource"> + <a href="https://salt.bountysource.com/teams/nim"> + <div class="page-layout" style="padding: 2pt 2pt 2pt 30pt"> + <img src="assets/bountysource/bountysource.png" style="width: 20px; float: left;"> + <span style="margin-left: 10pt; float: left; margin-top: 2pt;">Fund Nim and help us develop it further!</span> + <img src="https://api.bountysource.com/badge/team?team_id=19072&style=raised" style="margin-top: 2pt; margin-left: 10pt"/> + </div> + </a> + </div> + <header id="head"> <div class="page-layout tall"> <div id="head-logo"></div> diff --git a/web/assets/style.css b/web/assets/style.css index 529358ec9..98bf12a9a 100644 --- a/web/assets/style.css +++ b/web/assets/style.css @@ -563,3 +563,14 @@ pre .end { background:url("images/tabEnd.png") no-repeat left bottom; } border-collapse: collapse; text-align: left; border-spacing: 0px; } + +#bountysource { + width: 100%; + height: 30px; + background-color: #19975d; +} + +#bountysource a, #bountysource a:visited, #bountysource a:hover { + color: #1a1a1a; + +} |