Skip to content
Snippets Groups Projects
Commit b300510d authored by Tim van Dijen's avatar Tim van Dijen
Browse files

Style cron-list

parent c895c147
No related branches found
No related tags found
No related merge requests found
{% set pagetitle = 'Cron result page'|trans %} {% set pagetitle = 'Cron result page'|trans %}
{% extends "base.twig" %} {% extends "base.twig" %}
{% block preload %}
<link rel="stylesheet" type="text/css" href="{{ baseurlpath }}assets/css/cron.css">
{% endblock %}
{% block content %} {% block content %}
<h2>{{ 'Cron result page'|trans }}</h2> <h2>{{ 'Cron result page'|trans }}</h2>
<p>{{ 'Cron is a way to run things regularly on unix systems.'|trans }}<br /><br /></p> <p>{{ 'Cron is a way to run things regularly on unix systems.'|trans }}<br /><br /></p>
<p>{{ 'Here is a suggestion for a crontab file:'|trans }}<br /><br /></p> <p>{{ 'Here is a suggestion for a crontab file:'|trans }}<br /><br /></p>
<div class="code-box code-box-content"> <div class="code-box code-box-content">
<code> <code id="cronlist">
{% for url in urls %} {% for url in urls %}
# {{ 'Run cron:'|trans }} [{{ url.tag }}]<br /> # {{ 'Run cron:'|trans }} [{{ url.tag }}]<br />
{{ url.int }} curl --silent "{{ url.href }}" > /dev/null 2>&1<br /> {{ url.int }} curl --silent "{{ url.href }}" > /dev/null 2>&amp;1<br />
{% endfor %} {% endfor %}
</code></div><br /> </code></div><br />
......
code#cronlist {
font-size: 0.8vw;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment