aboutsummaryrefslogtreecommitdiff
path: root/data/templates/fork-remote.htm
blob: e16b4da85a1611f7a1fa06cd7ce6e3317f80555a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{% extends "base.htm" %}
{% block title %}Fork remote paste{% endblock %}

{% block meta %}
<meta name="robots" content="noindex"/>
{% endblock %}

{% block content %}
 {% include 'fork-remote-new.htm' %}

 {% if error %}
  <div class="alert alert-error">
   {{error}}
  </div>
 {% endif %}

 {% if urls %}
  {% include 'fork-remote-multiple.htm' %}
 {% endif %}

{% endblock %}