12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?php
- /*
- template name: 投稿
- description: template for yusi123.com Yusi theme
- */
- get_header();
- ?>
- <div class="pagewrapper clearfix">
- <aside class="pagesidebar">
- <ul class="pagesider-menu">
- <?php echo str_replace("</ul></div>", "", ereg_replace("<div[^>]*><ul[^>]*>", "", wp_nav_menu(array('theme_location' => 'pagemenu', 'echo' => false)) )); ?>
- </ul>
- </aside>
- <div class="pagecontent">
- <header class="pageheader clearfix">
- <h1 class="pull-left">
- <a href="<?php the_permalink() ?>"><?php the_title(); ?></a>
- </h1>
- <div class="pull-right">
- <?php deel_share() ?>
- </div>
- </header>
- <?php while (have_posts()) : the_post(); ?>
- <article class="article-content">
- <?php the_content(); ?>
- </article>
- <?php endwhile; ?>
- <ul class="submit-form">
- <li> <strong>标题</strong>
- <input id="tougao-title" class="input-block-level" type="text" size="40" placeholder="写点什么...">
- <p class="text-error hide"></p>
- </li>
- <li> <strong>网址</strong>
- <input id="tougao-url" class="input-block-level" type="text" placeholder="http://" size="100">
- <p class="text-error hide"></p>
- </li>
- <li>
- <strong>内容</strong>
- <textarea id="tougao-content" rows="12" class="input-block-level" placeholder="写点什么..."></textarea>
- <p class="text-error hide"></p>
- </li>
- </ul>
- <div class="text-error"></div>
- <button id="tougao-submit" class="btn btn-primary"><i class="fa fa-check-square-o"></i> 立即提交</button>
- </div>
- </div>
- <?php wp_enqueue_script( '', get_template_directory_uri() . '/js/tougao.js', array(), '3.0', true ); ?>
- <?php get_footer(); ?>
|