Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

implementado issue #91 #110

Merged
merged 1 commit into from
Jun 16, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions theme/static/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,24 @@ code {
padding: 0;
font-family: Consolas, "Liberation Mono", Courier, monospace;
}


.doeaoautor {
text-align: center;
background: rgba(244, 255, 246, 0.97);
border-top: 2px solid #ccc;
border-bottom: 2px solid #ccc;
margin: 1.5em 10px;
padding: 0.5em 10px;
quotes: "\201C""\201D""\2018""\2019";
}

.licence {
text-align: center;
background: rgba(244, 255, 246, 0.97);
border-top: 2px solid #ccc;
border-bottom: 2px solid #ccc;
margin: 1.5em 10px;
padding: 0.5em 10px;
quotes: "\201C""\201D""\2018""\2019";
}
13 changes: 13 additions & 0 deletions theme/templates/article.html
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,19 @@ <h1>{{ article.title }}</h1>
</header>
</section>
{{ article.content }}

<div class="licence">
<a rel="license" href="http://creativecommons.org/licenses/by-nc-nd/4.0/"><img alt="Licença Creative Commons"
style="border-width:0"
src="http://i.creativecommons.org/l/by-nc-nd/4.0/88x31.png"/></a><br/><a
xmlns:dct="http://purl.org/dc/terms/" property="dct:title"
href="http://pythonclub.com.br/{{ article.url }}">"{{ article.title }}"</a> de <a
xmlns:cc="http://creativecommons.org/ns#" href="{{ SITEURL }}/{{ article.author.url }}"
property="cc:attributionName" rel="cc:attributionURL">"{{ article.author }}"</a> está licenciado com uma Licença
<a rel="license" href="http://creativecommons.org/licenses/by-nc-nd/4.0/">Creative Commons -
Atribuição-NãoComercial-SemDerivações 4.0 Internacional</a>.
</div>

<div class="sharing">
<!-- Facebook sharing -->
<div id="fb-root"></div>
Expand Down