diff options
author | Jesús <heckyel@hyperbola.info> | 2019-11-18 11:52:41 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2019-11-18 11:52:41 -0500 |
commit | 647b51b604d3ff9371918e8740db08bea247ba67 (patch) | |
tree | 61f8a2e0c71633f70022c7651db214b06b1bfd65 | |
parent | 173bf433ab35874c03d58d87202ecd1ba907fd32 (diff) | |
download | cl-theme-647b51b604d3ff9371918e8740db08bea247ba67.tar.lz cl-theme-647b51b604d3ff9371918e8740db08bea247ba67.tar.xz cl-theme-647b51b604d3ff9371918e8740db08bea247ba67.zip |
fix post.html
-rw-r--r-- | post.html | 25 |
1 files changed, 23 insertions, 2 deletions
@@ -288,7 +288,7 @@ <!-- end of comments --> <!-- form begin --> - <div class="media"> + <form class="media"> <figure class="media-left"> <p class="image is-64x64"> <img src="https://bulma.io/images/placeholders/128x128.png" alt="placeholder"> @@ -296,17 +296,38 @@ </figure> <div class="media-content"> <div class="field"> + <div class="control"> + <input class="input" type="text" placeholder="Your Name or Nickname"> + </div> + </div> + <div class="field"> + <div class="control"> + <input class="input" type="text" placeholder="Your Website (optional)"> + </div> + </div> + <div class="field"> <p class="control"> <textarea class="textarea" placeholder="Add a comment..."></textarea> </p> </div> <div class="field"> + <div class="control"> + <p>You may format you comment with + <a href="https://en.wikipedia.org/wiki/Markdown" + rel="noopener noreferrer" target="_blank">Markdown</a>. + </p> + </div> + </div> + <div class="field"> <p class="control"> <button class="button is-button-grey">Post comment</button> + <a href="#"> + Comment Atom Feed + </a> </p> </div> </div> - </div> + </form> <!-- form end --> </div> |