summaryrefslogtreecommitdiffstats
path: root/templates/blogpost.tmpl
blob: ddf2a8f09aa0f2239e857c99873acd439c5650ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<p class="text-right">
  <TMPL_IF RSSURL>
    <a class="badge badge-info" type="application/rss+xml" rel="alternate"
       title="<TMPL_VAR RSSDESC>" href="<TMPL_VAR RSSURL>">RSS</a>
  </TMPL_IF>
  <TMPL_IF ATOMURL>
    <a class="badge badge-info" type="application/atom+xml" rel="alternate"
       title="<TMPL_VAR ATOMDESC>" href="<TMPL_VAR ATOMURL>">Atom</a>
  </TMPL_IF>
</p>
<form <TMPL_IF POSTFORMID>id="<TMPL_VAR POSTFORMID ESCAPE=HTML>"</TMPL_IF>
      action="<TMPL_VAR CGIURL>" method="get" class="form-inline">
  <input type="hidden" name="do" value="blog" />
  <input type="hidden" name="from" value="<TMPL_VAR ROOTPAGE>" />
  <input type="hidden" name="subpage" value="1" />
  <div class="row">
  <div class="panel panel-default col-md-10 col-md-offset-1">
    <div class="panel-body">
      <span class="text-uppercase text-muted">
        <strong><TMPL_VAR POSTFORMTEXT></strong>&nbsp;
      </span>
      <div class="form-group">
        <label for="title" class="sr-only">Title</label>
        <input class="form-control" placeholder="Title" name="title" size="40" />
      </div>
      <input type="submit" value="Edit" class="btn btn-default"/>
    </div>
  </div>
  </div>
</form>