<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
    <title>Kinetix Hosting</title>
    <link rel="alternate" type="text/html" href="http://www.kinetixhosting.com/" />
    <link rel="self" type="application/atom+xml" href="http://www.kinetixhosting.com/atom.xml" />
    <id>tag:www.kinetixhosting.com,2008-03-08://1</id>
    <updated>2008-11-02T18:10:03Z</updated>
    <subtitle>Quality affordable small business web hosting service by JSW4.NET</subtitle>
    <generator uri="http://www.sixapart.com/movabletype/">Movable Type Pro 4.21-en</generator>

<entry>
    <title>Private tags, hidden pages</title>
    <link rel="alternate" type="text/html" href="http://www.kinetixhosting.com/2008/11/private-tags-hidden-pages.html" />
    <id>tag:www.kinetixhosting.com,2008://1.47</id>

    <published>2008-11-02T17:33:30Z</published>
    <updated>2008-11-02T18:10:03Z</updated>

    <summary>How to hide pages and entries, ie keep them from being displayed in menus and lists.</summary>
    <author>
        <name>John Walker</name>
        <uri>http://www.jsw4.net/</uri>
    </author>
    
        <category term="Working with MovableType" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="movabletype" label="movable type" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="templates" label="templates" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://www.kinetixhosting.com/">
        <![CDATA[<p>There are pages on a site which you might not want to appear in a list of all the pages on your site. If you make a custom 404 error page, that really doesn't belong in a site map. If you have landing pages such as "Thank you" pages displayed for users after they submit a form those don't really need to be listed in menu lists.</p>

<p><span class="mt-enclosure mt-enclosure-image" style="display: inline;"><a href="http://www.kinetixhosting.com/assets_c/2008/11/edit404.html" onclick="window.open('http://www.kinetixhosting.com/assets_c/2008/11/edit404.html','popup','width=617,height=388,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://www.kinetixhosting.com/assets_c/2008/11/edit404-thumb-300x188.png" width="300" height="188" alt="edit404.png" class="mt-image-right" style="float: right; margin: 0 0 20px 20px;" /></a></span></p>

<p>In order to manage those kinds of pages with Movable Type you need a way to tell MT those are "hidden" pages and not to put them in lists of pages. One way is to use a <a href="http://www.movabletype.org/documentation/administrator/managing-blogs/managing-tags.html">private tag</a> to mark the pages, and then look for that mark when you build lists in your Movable Type templates. In <acronym title="Movable Type">MT</acronym> beginning an Entry Tag or a Page Tag with an at symbol (@) makes that tag private. Private tags won't be displayed in lists of tags, they are only seen by the author... or in this case the templates. </p>

<h2 class="kntx-page">How did we do it?</h2>

<p>As shown in the illustration, we used the tag @hidden to designate the pages we don't want showing up in menus. In templates we used code like this snippet from the Page Listing widget</p>



<pre>&lt;mt:Pages tag=&quot;NOT @hidden&quot; no_folder=&quot;1&quot; sort_by=&quot;title&quot; sort_order=&quot;ascend&quot;&gt;
  &lt;mt:PagesHeader&gt;
    &lt;ul class=&quot;widget-list&quot;&gt;
  &lt;/mt:PagesHeader&gt;
  &lt;li class=&quot;widget-list-item&quot;&gt;&lt;a href=&quot;&lt;$mt:PagePermalink$&gt;&quot; title=&quot;&lt;$mt:PageTitle$&gt;&quot;&gt;&lt;$mt:PageTitle$&gt;&lt;/a&gt;&lt;/li&gt;
  &lt;mt:PagesFooter&gt;
    &lt;/ul&gt;
  &lt;/mt:PagesFooter&gt;
&lt;/mt:Pages&gt;</pre>



<p>The <code>tag=&quot;NOT @hidden&quot;</code> attribute value pair we used is valid to modify the <code>&lt;mt:Entries&gt;</code> tag as well as <code>&lt;mt:Pages&gt;</code> tag. Although, off the top of my head, I don't know why you would want to hide an entry.</p>]]>
        
    </content>
</entry>

<entry>
    <title>Putting Movable Type Keywords in the Head of the HTML file</title>
    <link rel="alternate" type="text/html" href="http://www.kinetixhosting.com/2008/09/movable-type-keywords.html" />
    <id>tag:www.kinetixhosting.com,2008://1.45</id>

    <published>2008-09-20T14:23:04Z</published>
    <updated>2008-11-02T19:31:26Z</updated>

    <summary>How to insert the keywords from MT entries and pages into the output templates so that search engines can see them.
</summary>
    <author>
        <name>John Walker</name>
        <uri>http://www.jsw4.net/</uri>
    </author>
    
        <category term="Working with MovableType" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="howto" label="howto" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="kb" label="kb" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="keywords" label="keywords" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="metatags" label="metatags" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://www.kinetixhosting.com/">
        <![CDATA[<p>When a user creates an entry or a page in <acronym title="Movable Type">MT</acronym>, they are given the possibility of entering keywords in a separate field. If the field is not visible in your <acronym title="Movable Type">MT</acronym> editing page, you can change the "Display Options". <acronym title="Movable Type">MT</acronym> uses this data when it performs a search, but this data is not "visible" to Internet search engines.</p>

<p><span class="mt-enclosure mt-enclosure-image" style="display: inline;"><a href="http://www.kinetixhosting.com/assets_c/2008/09/MT-display-options.html" onclick="window.open('http://www.kinetixhosting.com/assets_c/2008/09/MT-display-options.html','popup','width=600,height=480,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://www.kinetixhosting.com/assets_c/2008/09/MT-display-options-thumb-280x224.png" width="280" height="224" alt="Display Options" class="mt-image-right" style="float: right; margin: 0 0 20px 20px;" /></a></span><em>It should be noted that the code in this tutorial has a lot of conditionals, so it may not scale well for your whole blog. Which is to say if you have thousands of pages or entries, <b>this may slow down your rebuild process</b>... maybe a little or maybe a lot. How much really depends, on lots of things that are beyond the scope of this post.</em></p>

<h3 class="kntx-page">Next to useless?</h3>

<p>There is a <a href="http://www.w3.org/TR/REC-html40/struct/global.html#h-7.4.4">standard <span class="caps">HTML </span>head element</a>, which contains meta data. The standard does not define what kinds of meta data may be present, but one very commonly used meta element is <b>keywords</b>. It is sometimes referred to as meta-keywords or the &lt;meta&gt; keywords attribute. Google says that http-equiv attribute keywords is <a href="http://code.google.com/webstats/2005-12/metadata.html">next to useless</a>. In the same article they note that it is still the second most commonly used attribute value of the meta element. </p>

<h3 class="kntx-page">How we did it at Kinetix</h3>

<p>As always, we recommend making a new template and including it where applicable. This makes it easier to upgrade your customizations in the future if template sets change. <em>And when have they not changed?</em> </p>

<p>There are two template tags that refer to keywords, because both pages and entries can have keywords. The tags are: <code>&lt;mt:EntryKeywords&gt;</code> and <code>&lt;mt:PageKeywords&gt;</code>. This code is included in the all output <span class="caps">HTML </span>(pages, entries and archives) so it has to check which context it will be render for, and select the appropriate MT template tags to render. Additionally, The KinetixHosting site uses the Professional Template Set so the code takes into account the special condition of the home page. </p>



<pre>
&lt;mt:If name=&quot;entry_template&quot;&gt;
  &lt;mt:IfNonEmpty tag=&quot;EntryKeywords&quot;&gt;
   &lt;meta name=&quot;Keywords&quot; content=&quot;&lt;mt:EntryKeywords&gt;&quot; /&gt;
  &lt;/mt:IfNonEmpty&gt;    
&lt;mt:ElseIf name=&quot;page_template&quot;&gt;
  &lt;mt:IfNonEmpty tag=&quot;PageKeywords&quot;&gt;
   &lt;meta name=&quot;Keywords&quot; content=&quot;&lt;mt:PageKeywords&gt;&quot; /&gt;
  &lt;/mt:IfNonEmpty&gt;
&lt;mt:ElseIf name=&quot;main_index&quot;&gt;
  &lt;mt:Pages tag=&quot;@home&quot; lastn=&quot;1&quot;&gt;
    &lt;mt:IfNonEmpty tag=&quot;PageKeywords&quot;&gt;
      &lt;meta name=&quot;Keywords&quot; content=&quot;&lt;mt:PageKeywords&gt;&quot; /&gt;
    &lt;/mt:IfNonEmpty&gt;
  &lt;/mt:Pages&gt;
&lt;/mt:If&gt;
</pre>



<h3 class="kntx-page">What, no keywords for the archive pages?</h3>

<p>Well, its true. But those pages always represent a collection of entries. What would the correct keywords for the archives be? What do you think should be done in this case?</p>]]>
        
    </content>
</entry>

<entry>
    <title>A small &quot;new web site&quot; gift for you</title>
    <link rel="alternate" type="text/html" href="http://www.kinetixhosting.com/2008/07/a-small-gift-for-you.html" />
    <id>tag:temp.kinetixhosting.com,2008://1.19</id>

    <published>2008-07-28T11:13:28Z</published>
    <updated>2008-07-28T19:19:20Z</updated>

    <summary>Our company is dedicated to providing a variety of well supported web hosting services to your small business. We made this new site with Movable Type and the Universal template set to demonstrate that a small business can easily make a simple web site to communicate effectively with their clientele. </summary>
    <author>
        <name>John Walker</name>
        <uri>http://www.jsw4.net/</uri>
    </author>
    
        <category term="KinetixHosting  News" scheme="http://www.sixapart.com/ns/types#category" />
    
        <category term="Working with MovableType" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="905" label="905" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="kinetixhosting" label="KinetixHosting" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="movabletype" label="movable type" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://www.kinetixhosting.com/">
        <![CDATA[<p>Today marks the launch of the new KinetixHosting site. Our company is dedicated to providing a variety of well supported web hosting services to your small business. We made this new site with Movable Type and the Universal template set to demonstrate that a small business can easily make a simple web site to communicate effectively with their clientele. </p>

<p><span class="mt-enclosure mt-enclosure-image" style="display: inline;"><a href="http://www.kinetixhosting.com/assets_c/2008/07/KarlaBlueIris905.html" onclick="window.open('http://www.kinetixhosting.com/assets_c/2008/07/KarlaBlueIris905.html','popup','width=905,height=170,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://www.kinetixhosting.com/assets_c/2008/07/KarlaBlueIris905-thumb-300x56.jpg" width="300" height="56" alt="Karla Blue 905" class="mt-image-center" style="text-align: center; display: block; margin: 0 auto 20px;" /></a></span></p>

<p>We believe that what you write <em>(what search engines see on your site)</em> is the most important part of a business web site. No matter how many people you can reach with your site, <b>the major search engines reach more</b>. So we think you should concentrate on what you write. The <acronym title="Movable Type">MT</acronym> platform makes it easy to focus on the words, and the <b>Movable Type <acronym title="universal template set">UTS</acronym> provides a simple visual framework</b> to easily drop them in. <b>KinetixHosting provides the servers and fast network platform</b> your company needs to put your content on the web. </p>

<p><span class="mt-enclosure mt-enclosure-image" style="display: inline;"><a href="http://www.kinetixhosting.com/assets_c/2008/07/OrangeLilly9051.html" onclick="window.open('http://www.kinetixhosting.com/assets_c/2008/07/OrangeLilly9051.html','popup','width=905,height=170,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://www.kinetixhosting.com/assets_c/2008/07/OrangeLilly905-thumb-300x56.jpg" width="300" height="56" alt="Soft Orange Lilly" class="mt-image-center" style="text-align: center; display: block; margin: 0 auto 20px;" /></a></span></p>

<p>Over the coming months, we will be using this power to help our customers by creating articles which will allow them to better use our systems and the Movable Type publishing platform. We got started with an article describing the similarities and differences between <a href="http://www.kinetixhosting.com/2008/03/element-pages.html">pages and entries</a>. Another example is our description of a great way to begin to <a href="http://www.kinetixhosting.com/2008/07/css-judo.html">customize the templates by building on a predefined style sheet</a>.</p>

<p><span class="mt-enclosure mt-enclosure-image" style="display: inline;"><a href="http://www.kinetixhosting.com/assets_c/2008/07/SunflowerBee905.html" onclick="window.open('http://www.kinetixhosting.com/assets_c/2008/07/SunflowerBee905.html','popup','width=926,height=174,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://www.kinetixhosting.com/assets_c/2008/07/SunflowerBee905-thumb-300x56.jpg" width="300" height="56" alt="Sunflower Bee" class="mt-image-center" style="text-align: center; display: block; margin: 0 auto 20px;" /></a></span></p>

<p>One of the first ways you can begin to make the Movable Type predefined templates look more customized is to change the image on the front page. The selector for which you must change the <span class="caps">CSS </span>properties is <code>#homepage-image</code> .</p>

<p>You may save any of the images linked to this post, or make your own 905 &#215; 170 pixel rectangular image. Then you must change to <span class="caps">URL </span>of the background image to refer to the image you have selected. This article describes how to write such <a href="http://www.kinetixhosting.com/2008/07/css-judo.html">customize <span class="caps">CSS </span>code for MT in an organized way</a> that will allow you to update templates easily in the future.</p>]]>
        
    </content>
</entry>

<entry>
    <title>Cascade Judo with StyleCatcher CSS</title>
    <link rel="alternate" type="text/html" href="http://www.kinetixhosting.com/2008/07/css-judo.html" />
    <id>tag:temp.kinetixhosting.com,2008://1.18</id>

    <published>2008-07-27T18:20:36Z</published>
    <updated>2008-09-07T00:46:43Z</updated>

    <summary>On this site we have presented an alternative which does not involve editing the files from StyleCatcher, and makes it possible to easily refresh templates without loosing all your customizations.
</summary>
    <author>
        <name>John Walker</name>
        <uri>http://www.jsw4.net/</uri>
    </author>
    
        <category term="Working with MovableType" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="css" label="css" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="movabletype" label="movable type" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="stylecatcher" label="StyleCatcher" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="uts" label="UTS" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://www.kinetixhosting.com/">
        <![CDATA[<p>The other day, on one of MT mailing lists, someone commented on how difficult it was for the average user to edit the <span class="caps">CSS </span>files that are created when a style is selected for a blog using StyleCatcher. On this site we have presented an alternative which does not involve editing the files from StyleCatcher, and makes it possible to easily refresh templates without loosing all your customizations.</p>

<p>From <a href="http://www.w3.org/TR/REC-CSS2/cover.html#minitoc"><span class="caps">CSS2</span> Specification</a> : <a href="http://www.w3.org/TR/REC-CSS2/cascade.html">Assigning property values, Cascading, and Inheritance</a></p>

<blockquote><p>Imported style sheets also cascade and their weight depends on their import order. Rules specified in a given style sheet override rules imported from other style sheets. Imported style sheets can themselves import and override other style sheets, recursively, and the same precedence rules apply. </p></blockquote>

<p>On our site, we create a new template, and name the output file kinetix.css.</p>

<p><span class="mt-enclosure mt-enclosure-image" style="display: inline;"><a href="http://www.kinetixhosting.com/assets_c/2008/07/createstyletemplate2.html" onclick="window.open('http://www.kinetixhosting.com/assets_c/2008/07/createstyletemplate2.html','popup','width=716,height=707,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://www.kinetixhosting.com/assets_c/2008/07/createstyletemplate-thumb-570x562.png" width="570" height="562" alt="Custom Style Template - Edit" class="mt-image-none" style="" /></a></span></p>

<p>Then in the Style Sheet template we add a line to include our own styles. Since we import our style sheet after the StyleCatcher style sheets, any property values we define will over ride the values from the StyleCatcher files.</p>



<pre>
@import &quot;/mt-static/themes-base/blog.css&quot;;
@import &quot;/[...]/universal-black/screen.css&quot;;
@import &quot;/kinetix.css&quot;;
</pre>



<p>Another advantage to making changes this way is that if we refresh templates we will only have to add one line to have all our customizations replaced.</p>]]>
        
    </content>
</entry>

<entry>
    <title>Widget sets let users modify sidebar content</title>
    <link rel="alternate" type="text/html" href="http://www.kinetixhosting.com/2008/06/element-widgetset.html" />
    <id>tag:temp.kinetixhosting.com,2008://1.12</id>

    <published>2008-06-07T13:35:20Z</published>
    <updated>2008-09-07T00:36:56Z</updated>

    <summary>In MT4 the publisher has supplied a visual editor, which lets users choose which navigation elements are displayed in the sidebar of a blog or web site. These navigation elements are called widgets, examples include recent entries, recent comments, and...</summary>
    <author>
        <name>John Walker</name>
        <uri>http://www.jsw4.net/</uri>
    </author>
    
        <category term="Working with MovableType" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="kb" label="kb" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="movabletype" label="movable type" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="widget" label="widget" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="widgetset" label="widget set" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://www.kinetixhosting.com/">
        <![CDATA[<p>In <span class="caps">MT4 </span>the publisher has supplied a visual editor, which lets users choose which navigation elements are displayed in the sidebar of a blog or web site. These navigation elements are called widgets, examples include recent entries, recent comments, and a variety of archive listings. There are also very basic widgets included in the default set, including a set and forget Creative Commons widget, and a feed subscription promo widget.</p>

<p><span class="mt-enclosure mt-enclosure-image" style="display: inline;"><a href="http://www.kinetixhosting.com/WidgetSet.html" onclick="window.open('http://www.kinetixhosting.com/WidgetSet.html','popup','width=977,height=807,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://www.kinetixhosting.com/assets_c/2008/03/WidgetSet-thumb-300x247.png" width="300" height="247" alt="Dragging Widget" class="mt-image-center" style="text-align: center; display: block; margin: 0 auto 20px;" /></a></span></p>

<p>By dragging and dropping on the "Installed Widgets" column of the screen, (as shown above) users can control what is displayed in the sidebar of different parts of the site when the site is next published. The default template includes three widget sets, appropriately named: "2-column layout - Sidebar","3-column layout - Primary Sidebar", and "3-column layout - Secondary Sidebar". <em>n.b. In release candidates for 4.2 I see there are some others as well.</em> </p>

<p>Users can create their own widget sets, and insert them into templates using code like:</p>

<code>
 &lt;$MTWidgetSet name=&quot;Name of the Widget Set&quot;$&gt;
</code>]]>
        
    </content>
</entry>

<entry>
    <title>MT4, now with Pages</title>
    <link rel="alternate" type="text/html" href="http://www.kinetixhosting.com/2008/03/element-pages.html" />
    <id>tag:temp.kinetixhosting.com,2008://1.9</id>

    <published>2008-03-13T18:26:16Z</published>
    <updated>2008-06-07T13:35:02Z</updated>

    <summary>In Movable Type 4 the vocabulary of information elements increased to include Pages. By adding Pages through the Movable Type system, users can create files on their web sites or blogs that are not part of the chronological flow of...</summary>
    <author>
        <name>John Walker</name>
        <uri>http://www.jsw4.net/</uri>
    </author>
    
        <category term="Working with MovableType" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="kb" label="kb" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="movabletype" label="movable type" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="pages" label="pages" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://www.kinetixhosting.com/">
        <![CDATA[<p>In Movable Type 4 the vocabulary of information elements increased to include <a href="http://www.movabletype.org/documentation/author/creating-pages.html">Pages</a>. By adding Pages through the Movable Type system, users can create files on their web sites or blogs that are not part of the chronological flow of <a href="http://www.movabletype.org/documentation/author/creating-entries.html">Entries</a>. This feature may be expressed as simply as an "about" page on a blog. Or it may be part of a more complex organization of pages into a site with a blog.</p>

<h2>Pages are not entries</h2>

<p>Pages can be organized into <em>folders</em>, but pages do not have <em>categories</em>. Entries have categories. Pages are not listed in date archives or on blog index pages. There is a nested page listing widget which can be placed in sidebars. Pages have their own template which is separate from entry templates; they can be customized to have different <span class="caps">XHTML </span>structure than entries, archives and indexes.</p>

<h3>There are similarities between pages and entries</h3>

<p>Pages can have a main (body) and extended sections, they can have excerpts that work the same way as excerpts work on entries. Pages have keywords field and they can be tagged. Pages can have comments and trackbacks.</p>]]>
        
    </content>
</entry>

<entry>
    <title>Web site framework experiment</title>
    <link rel="alternate" type="text/html" href="http://www.kinetixhosting.com/2008/03/uts-experiment.html" />
    <id>tag:temp.kinetixhosting.com,2008://1.6</id>

    <published>2008-03-08T15:22:37Z</published>
    <updated>2008-07-28T10:44:39Z</updated>

    <summary>One of the products that we are pleased to support for our customers is Movable Type Open Source, and all the Movable Type &#8482; 4.1 commercial products. We like this so well, we&apos;re going to use it for managing our...</summary>
    <author>
        <name>John Walker</name>
        <uri>http://www.jsw4.net/</uri>
    </author>
    
        <category term="KinetixHosting  News" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="design" label="design" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="movabletype" label="movable type" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="prototype" label="prototype" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://www.kinetixhosting.com/">
        <![CDATA[<p>One of the products that we are pleased to support for our customers is Movable Type Open Source, and all the Movable Type &#8482; 4.1 commercial products. We like this so well, we're going to use it for managing our new web site.</p>

<p>At KinetixHosting.com we are excited to try web site development using the <a href="http://www.movabletype.org/documentation/professional/universal-template-set.html">Universal Template Set</a> that comes with Movable Type 4.1. Our goal is to show that you can make use this tool, out of the box, to make a functional basic web site <del>in three days</del> without a huge investment in time. To that end we won't be making any significant changes to the structure for the initial launch, purely an exercise in developing the content and small changes to customize the look of the site.</p>

<p>We have been planning this change for some time, and we have even simplified our pricing for new customers. This effort marks our first major web site redesign in five years, and should our on-going commitment to providing excellent Business Web Hosting Services to all our customers.</p>]]>
        
    </content>
</entry>

</feed>
