8000 Backport PR #5094 on branch v0.18.x (added link to imagesc forum in example pages) by meeseeksmachine · Pull Request #5096 · scikit-image/scikit-image · GitHub
[go: up one dir, main page]

Skip to content

Backport PR #5094 on branch v0.18.x (added link to imagesc forum in example pages) #5096

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

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations< 8000 /strong>
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 9 additions & 15 deletions doc/source/themes/scikit-image/layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,15 @@
{% block body %}{% endblock %}
</div>
</div>
<div class="forum link" role="contentinfo">
{% if "plot" in pagename %}
We hope that this example was useful. If you have questions
unanswered by our documentation, you can ask them on the
<a href="https://forum.image.sc/tag/scikit-image"> Image.sc
forum</a>,
where scikit-image developers and users are present.</br>
{%- endif %}
</div>
<div class="well footer" role="contentinfo">
<small>
&copy; Copyright the scikit-image development team.
Expand All @@ -110,18 +119,3 @@
</body>
</html>

<!-- Matomo -->
<script type="text/javascript">
var _paq = window._paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="https://scikitimage.matomo.cloud/";
_paq.push(['setTrackerUrl', u+'matomo.php']);
_paq.push(['setSiteId', '1']);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.type='text/javascript'; g.async=true; g.src='//cdn.matomo.cloud/scikitimage.matomo.cloud/matomo.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<!-- End Matomo Code -->
8 changes: 8 additions & 0 deletions doc/source/themes/scikit-image/static/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,14 @@ h6:hover .headerlink {
text-decoration: none;
}

.forum {
margin-top: 30px;
padding: 5px 10px;
color: #3a87ad;
background-color: #d9edf7;
border: 1px solid #bce8f1;
font-weight: bold;
}
.footer {
margin-top: 30px;
padding: 5px 10px;
Expand Down
0