Files
blender-cloud/src/templates/stats.pug
Sybren A. Stüvel cf98883633 Make <meta property="og:url"> tags have an absolute URL
Most of those can simply use `{{ request.url }}`, as this already contains
the absolute URL of the currently displayed page.
2018-09-05 13:58:13 +02:00

31 lines
815 B
Plaintext

| {% extends 'layout.html' %}
| {% block page_title %}Statistics{% endblock %}
| {% set title = 'statistics' %}
| {% block og %}
meta(property="og:title", content="Blender Cloud Statistics")
meta(property="og:url", content="{{ request.url }}")
meta(property="og:image", content="{{ url_for('static', filename='assets/img/backgrounds/background_andy_hdribot_01.jpg')}}")
| {% endblock %}
| {% block head %}
style.
iframe {
width: 100%;
min-height: 1000px;
margin: 0;
padding: 0;
border: none;
}
| {% endblock %}
| {% block body %}
#page-container
#page-content
iframe(src="https://stats.cloud.blender.org/app/kibana#/dashboard/a2ae48b0-f798-11e7-a3e6-1b054745db54?embed=true&_g=(time:(from:now-90d,mode:quick,to:now),refreshInterval:(display:Off,pause:!f,section:0,value:0))")
| {% endblock %}