Archived
1
0

Merge branch 'devel' into dank

Conflicts:
	contrib/templates/default/post.mustache
This commit is contained in:
jeff 2015-10-01 13:56:09 -04:00
commit 1a51354621
7 changed files with 27 additions and 1 deletions

BIN
contrib/static/clearnet.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 846 B

BIN
contrib/static/i2p.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -108,6 +108,17 @@ th {
padding-right: 15px;
}
#captcha_img {
background: #d3d3d3;
}
input, textarea {
color: whitesmoke;
background: #2d2d2d;
border-color: #4D28CA;
border-radius: 3px;
}
html {
color: #ededed;
background: #262230;

BIN
contrib/static/tor.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -1,4 +1,4 @@
<div class="{{{CSSClass}}}" id="{{PostHash}}">
<div class="{{CSSClass}}" id="{{PostHash}}">
<p class="intro">
<label for="delete_{{PostHash}}">
<span class="frontend">
@ -7,6 +7,17 @@
<span class="subject">
{{Subject}}
</span>
<span class="origin">
{{#IsTor}}
<img src="{{Prefix}}static/i2p.png" alt="post from i2p" />
{{/IsTor}}
{{#IsI2P}}
<img src="{{Prefix}}static/tor.png" alt="post from tor" />
{{/IsI2P}}
{{#IsClearnet}}
<img src="{{Prefix}}static/clearnet.png" alt="post from clearnet" />
{{/IsClearnet}}
</span>
<span class="name">
{{#Sage}}
<a href="mailto:sage">

View File

@ -1,4 +1,6 @@
<html>
<meta charset="utf-8" />
<link rel="stylesheet" href="{{prefix}}static/site.css"></link>
<meta http-equiv="refresh" content="1; {{redirect_url}}" />
<body>
<p>post failed: {{reason}}</p>

View File

@ -5,6 +5,8 @@
- message_id ( the value of the Message-ID header in the post we made, the truncated sha1 of this is the >>posthash )
}}
<html>
<meta charset="utf-8" />
<link rel="stylesheet" href="{{prefix}}static/site.css"></link>
<meta http-equiv="refresh" content="2; {{redirect_url}}" />
<body>
<pre>posted as {{message_id}}</pre>