Forum for discussing general topics related to Couch.
3 posts Page 1 of 1
Hi, I would like to know how I can optimize my cloned pages for search engines
Hi,

Assuming one knows what needs to be done for SEO (e.g. the meta tags etc.), Couch does not restrict you from placing those in the HTML source code.

Point is, you need to have a static design that already incorporates the SEO techniques to begin with. You can then use Couch to dynamically create those values.

Out of the box, as you must have seen, Couch gives only a blank admin-panel - it is you who shapes it as you wish.
As KK pointed out it's totally up to you. Anyhow below the minimum code you need to get you started.

Code: Select all
<cms:template>

<cms:editable name='meta_description' label='Short product description - 160 characters max' type='textarea'></cms:editable>

<cms:editable
  name="robots"
  label="Robots value"
  desc="Select one"
  opt_values='index, follow | noindex, follow | noindex, nofollow'
  type='dropdown'
/>

</cms:template>


<head>

<meta name="robots" content="<cms:show robots />"/>
<title>Your site name | <cms:show k_page_foldertitle/> - <cms:show k_page_title /></title>
<meta name="description" content="<cms:show meta_description />"/>

</head>
I load frameworks and write bugs on top of them, after that I rearrange the code so that it looks like a cool product.
3 posts Page 1 of 1
cron