Convert Wordpress Template to CMSMS
Posted: Wed Jun 20, 2007 2:24 pm
Anyone out there up for converting a WP template to cmsms for me? If so, please state your fee.
Content management as it is meant to be
https://forum.cmsmadesimple.org/
Code: Select all
<__html>
<head>
<title>Preschool Rock Moms</title>
.....
<meta name="description" content="Preschool Rock Moms is a radio show for moms of preschoolers. Anything and everything related to the parenting of preschoolers is discussed in the radio show. Special guests appear on most Preschool Rock Moms shows. Get a complete listing of Preschool Rock Moms radio shows." />
<meta name="keywords" content="preschool rock moms, radio shows, parents, moms, parenting, radio shows for moms, shows for parents, podcasts for parents, podcasts for moms, radio shows for parents, preschool rock, podcasts, listen, live, shows " />
....
<link rel="stylesheet" href="http://preschoolrockmoms.com/wp-content/plugins/dd-formmailer/dd-formmailer.css" type="text/css" media="screen" />
....
</head>
</__body>
<__body>
</__html>
Code: Select all
<__html>
<head>
<title>{title}</title>
.....
{metadata}
.....
{stylesheet}
....
</head>
</__body>
<__body>
</__html>
Code: Select all
<__html>
<head>
<title>{title}</title>
.....
{metadata}
.....
{stylesheet}
....
</head>
</__body>
......
<div class="post" id="post-31">
<div class="box_title">
<div class="left"><a href="http://preschoolrockmoms.com/shows/perfect-sitter/#respond" title="Comment on Parenting Tips: Finding the Perfect Sitter">0</a></div>
<div class="right">
<h2><a href="http://preschoolrockmoms.com/shows/perfect-sitter/" rel="bookmark" title="Permanent Link to Parenting Tips: Finding the Perfect Sitter">Parenting Tips: Finding the Perfect Sitter</a></h2>
<small>Posted: June 3rd, 2007<br />
Category: <a href="http://preschoolrockmoms.com/category/shows/" title="View all posts in All Shows" rel="category tag">All Shows</a>, <a href="http://preschoolrockmoms.com/category/shows/tips/" title="View all posts in Parenting Tips" rel="category tag">Parenting Tips</a> | </small>
</div>
<br class="clear" />
</div>
<div class="entry">
<p>Show Date: <strong>Sunday, June 24, 2007 @ 4pm PST / 7pm EST</strong><br />
Guest Appearance: <strong>Genevieve Thiers, Founder and CEO of </strong><a href="http://www.sittercity.com/"><strong>www.SitterCity.com</strong></a> <br />
Finding a sitter for your preschooler is not only a challenge, but it can be stressful, too. What should you look for in a sitter? How can you get a background check on a sitter? Where can you find a selection of sitters? What questions should you ask a potential sitter? If you’re seeking a sitter and you’re not sure how to go about finding the perfect sitter for your family, tune in for some great tips from Genevieve Theirs.<br />
<a href="http://preschoolrockmoms.com/shows/perfect-sitter/#more-31" class="more-link">More »</a></p>
</div>
<p class="edit"></p>
</div>
...
.include all the posts on the page (all tech on the left side column)
....
<__body>
</__html>
Code: Select all
<__html>
<head>
<title>{title}</title>
....
{metadata}
....
{stylesheet}
....
</head>
</__body>
......
{content}
......
<__body>
</__html>
Code: Select all
<!-- Start News Display Template -->
{foreach from=$items item=entry}
<div class="NewsSummary">
<div class="left">
<a href="{$entry->link}/#respond">{$entry->title}</a>
</div>
<div class="right">
<h2>{$entry->titlelink}</h2>
<small>
{if $entry->formatpostdate}
{$entry->formatpostdate}
{/if}
<br />
{$category_label} {$entry->category}
{/if}</small>
</div>
<br class="clear" />
{if $entry->author}
<div class="NewsSummaryAuthor">
{$author_label} {$entry->author}
</div>
{/if}
{if $entry->summary}
<div class="entry">
{eval var=$entry->summary}
</div>
<p align="right"><div class="NewsSummaryMorelink">
[{$entry->morelink}]
</div>
{if $entry->formatpostdate}
<div class="NewsSummaryPostdate">
{$entry->formatpostdate}
</div></p>
{/if}
{else if $entry->content}
<div class="NewsSummaryContent">
{eval var=$entry->content}
</div>
{/if}
</div>
{/foreach}
<!-- End News Display Template -->
I'm sure you have a menu templateslloyd wrote:Menu template? I don't have a menu template; I just have the page's template and the CSS2) You may need to tweak the menu template...
Also with default install comes a stylesheet named "Accessibility and cross browser tools". This one you have to attach to your template.Crossbrowser CSS? Where is that?You need to attach the crossbrowser CSS to this template to get rid of the dfn numbers and words....
Yeah, cause this line has the class "accessibility" so it's not shown on page but for screen readers.slloyd wrote: It makes my horizontal line disappear.