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

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

{% block content %}
 <h1>Fork remote paste</h1>
 {% if error %}
  <div class="alert alert-error">
   <button type="button" class="close" data-dismiss="alert">×</button>
   <strong>Error</strong> {{error}}
  </div>
 {% endif %}

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

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

{% endblock %}