我需要在明天之前提出一个投资组合 - 我过去做过一些网络工作,但我从未真正创建过投资组合。
你能建议一个干净简单的wordpress启动器吗?我看到他们中的很多人都喜欢Roots,但他们都有太多复杂的元素,我需要花费一个多晚来修改。
注意:我并不是想制作一个投资组合主题 - 我正试图让一个主题向雇主展示。
答案 0 :(得分:1)
您是否考虑过使用wordpress作为后端?您可以将前端自定义为您想要的任何内容,然后通过使用主题增强Wordpress来调用Wordpress帖子和页面。
<!DOCTYPE HTML>
<html><head>
</head>
<?php define('WP_USE_THEMES', false); require('[wordpress_installation]/wp-blog-header.php');?>
<body id="wrap">
<div class="posts">
<?php query_posts('&cat=3'); //Specify a specific blog category if you want ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="post">
<div class="sub-title">
<div style="padding:3px 0;"><?php the_title(); ?></div>
<div class="post_date"><?php the_time('F jS, Y') ?></div>
</div>
<?php the_content(); ?>
</div>
<?php endwhile; else: ?>
<?php endif; ?>
</div>
</body>
</html>
答案 1 :(得分:0)