Inline form controls

pull/2/head
Noah 2015-05-15 00:22:33 +00:00
父节点 76c58e5b19
当前提交 2441e729c3
共有 1 个文件被更改,包括 2 次插入2 次删除

查看文件

@ -36,8 +36,8 @@
{% if session["login"] %}
<p>Embed this image in a blog post:<br>
<input type="text" class="form-control" readonly value="![{{ photo['caption'] }}]({{ app['photo_url'] }}/{{ photo['large'] }})"> (Markdown)<br>
<input type="text" class="form-control" readonly value='<a href="{{ app['photo_url'] }}/{{ photo['large'] }}" alt="{{ photo['caption'] }}">'> (HTML)
<input type="text" class="form-control inline" readonly value="![{{ photo['caption'] }}]({{ app['photo_url'] }}/{{ photo['large'] }})"> (Markdown)<br>
<input type="text" class="form-control inline" readonly value='<img src="{{ app['photo_url'] }}/{{ photo['large'] }}" alt="{{ photo['caption'] }}">'> (HTML)
{% endif %}
{{ nav_links() }}