Forum Moderators: phranque
i built website in jsp. and everything is done in include file, including content. should i have content part as raw data or should i have content as include file.
is there a difference for search engine robots? i know from user point it does not matter but i care about robots and SE as well :)
Nermin
i was working on a page that has following
<%-- Title --%>
<%= com.csi.cms.CMSContent.getContent(pageContext, 1, "title_home") %>
<%-- End Title --%>
<%-- Meta Tags --%>
<%= com.csi.cms.CMSContent.getContent(pageContext, 1, "metatags_home") %>
<%-- End Meta Tags --%>
is it better to go this way or make each page like you would in html.
<title>123</title>
<meta name="description" content="123" >
<meta name="keywords" content="123" >
same question goes for content? keep it as raw data or have it like
<%-- Meta Tags --%>
<%= com.csi.cms.CMSContent.getContent(pageContext, 1, "content_home") %>
<title>123</title>
<meta name="description" content="123" >
<meta name="keywords" content="123" >