Contains the Concourse pipeline definition for building a line-server container
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
{% extends "base.html" %}
{% block head %} <link href="{{ sitepath }}static/css/story.css" rel="stylesheet" type="text/css"> {% endblock %}
{% block innercontentmore %} class="scrollable"{% endblock %} {% block mainmore %} class="storycontent" {% endblock %}
{% block infoleft %} <div id="editform"> <form id="reply" action='{{ sitepath }}upload' method='post' > <div class="right pad-left"> <button id="save">save</button> <select id="expiry" name="expires"> <option disabled=disabled>Expires:</option> {% for expiry in expirylist %} <option value="{{ expiry.Seconds }}"{% if forloop.Last %} selected{% endif %}>{{ expiry.Human }}</option> {% endfor %} </select> </div>
<input class="codebox" name='filename' id="filename" type='text' value="" placeholder="filename">.<input id="extension" class="codebox" name='extension' type='text' value="story" placeholder="txt"> <textarea name='content' id="newcontent" class="editor"></textarea> </form> </div> {% endblock %}
{%block infomore %} <label>wrap <input id="wordwrap" type="checkbox" checked></label> | {% endblock %}
{% block main %} <div id="normal-content" class="normal"> <pre id="normal-code"><code id="codeb" class="story">{% for line in lines %}{% if line|make_list|first == ">" %}<span class="storygreen">{{ line }}</span>{% else %}<span class="storyred">{{ line }}</span>{% endif %}{% endfor %}</code></pre> <textarea id="inplace-editor" class="editor">{{ extra.contents }}</textarea> </div>
<script src="{{ sitepath }}static/js/util.js"></script> <script src="{{ sitepath }}static/js/bin.js"></script> {% endblock %}
|