source: products/quintagroup.plonegooglesitemaps/trunk/quintagroup/plonegooglesitemaps/skins/qPloneGoogleSitemaps/prefs_gsm_overview.cpt @ 1593

Last change on this file since 1593 was 1593, checked in by mylan, 14 years ago

Add content from qPloneGoogleSitemaps. Fix all imports

  • Property svn:eol-style set to native
File size: 5.9 KB
Line 
1<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US"
2      xmlns:metal="http://xml.zope.org/namespaces/metal"
3      xmlns:tal="http://xml.zope.org/namespaces/tal"
4      lang="en-US"
5      metal:use-macro="here/prefs_main_template/macros/master"
6      i18n:domain="qPloneGoogleSitemaps">
7
8<body>
9  <div metal:fill-slot="prefs_configlet_main"
10       tal:define="errors python:request.get('errors', {})">
11
12    <div class="documentEditable">
13        <ul class="contentViews">
14            <li class="selected">
15                <a href=""
16                   tal:attributes="href string:${template/id}"
17                   i18n:translate="label_properties">Overview</a>
18            </li>
19
20            <li class="">
21                <a href=""
22                   tal:attributes="href string: prefs_gsm_verification"
23                   i18n:translate="label_properties">Verification</a>
24            </li>
25
26            <li class="">
27               <a href=""
28                  tal:attributes="href string: prefs_gsm_settings">
29                  Settings</a>
30            </li>
31
32        </ul>
33
34        <div class="contentActions">
35        &nbsp;
36        </div>
37        <div class="documentContent">
38            <h1 i18n:translate="heading_plonegooglesitemaps">Plone Google Sitemaps</h1>
39            <a href=""
40            class="link-parent"
41            tal:attributes="href string: $portal_url/plone_control_panel"
42            i18n:translate="label_up_to_plone_setup">
43            Up to Plone Setup
44            </a>
45
46            <div class="documentDescription"
47                i18n:translate="description_plonegooglesitemaps">
48            Plone Google Sitemaps allows search engine to have better visibility of your
49            <tal:url replace="portal_url" i18n:name="url">example.com</tal:url>
50            Plone website.
51            </div>
52 
53            <h2>Post-install instructions</h2>
54
55            <p>Congratulations, you've installed Plone Google Sitemaps product from
56            Quintagroup.</p>
57
58<!--              -->
59            <dl tal:define="view here/@@sitemap_settings;
60                            sitemaps view/sitemapsURLByType;
61                            all sitemaps/all | nothing">
62            <dt>First step</dt>
63            <dd>To enable Google Sitemaps on your site, add a sitemap at
64            <a href="prefs_gsm_settings"
65                tal:attributes="href string:$portal_url/prefs_gsm_settings">Google Sitemap settings</a> tab.
66            You can add one of the following sitemap types: <strong>content, mobile or news</strong>.
67            Different sitemap types index their own content and do not depend on other sitemaps.
68            </dd>
69            <dt>Second step</dt>
70            <dd>
71            <tal:condition-true condition="all">
72            Your site is already Google Sitemaps enabled. Check
73            <tal:loop repeat="smdata all">
74            <a href="google-sitemaps"
75               tal:attributes="href smdata/url"
76               tal:content="smdata/id">sitemap id</a>
77            <span tal:omit-tag=""
78                  tal:condition="not: repeat/smdata/end">,</span>
79            </tal:loop>
80            to see generated sitemap document(s) of your website.
81            </tal:condition-true>
82            <tal:condition-false condition="not:all">
83            After adding Google Sitemap(s), check whether they where generated correctly.
84            </tal:condition-false>
85
86            They should contain URLs of all published objects. If you see
87            something that should not be indexed by Google, retract objects or
88            exclude sections with robots.txt (that GoogleBot obeys).
89            </dd>
90            <dt>Third step</dt>
91            <dd>Make Google know about your sitemap(s):
92            <ol>
93                <li>go to <a href="https://www.google.com/webmasters/sitemaps">Google
94                Sitemaps Central</a> (logging in / signing up as necessary)</li>
95                <tal:condition-true condition="all">
96
97                <li>add your sitemap URL(s):
98                  <ul>
99                    <tal:loop repeat="smdata all">
100                    <li>
101                      <code tal:content="smdata/url">http://example.com/sitemaps.xml</code>
102                    </li>
103                    </tal:loop>
104                  </ul>
105                </tal:condition-true>
106
107                <tal:condition-false condition="not:all">
108                <li>This step will display urls to your sitemap(s) after adding it(them) in previous step(s)</li>
109                </tal:condition-false>
110
111            </ol>
112            It takes a while for your sitemap to be processed by Google.
113            It usually processes the sitemap within 24 hours so do not expect your
114            submission to be processed instantly.
115            </dd>
116            </dl>
117            <h2>Helpful resources</h2>
118            <dl>
119            <dt><a href="http://groups-beta.google.com/group/google-sitemaps">google-sitemaps discussion group</a><dt>
120            <dd>As Google Sitemaps is emerging technology, we are all learning from it.
121            Google set up discussion group to find your ideas about it. You can find
122            help from other webmasters as they usually found answers to questions that
123            you have. If not you are free to ask, to praise and to ramble ;)</dd>
124            <dt><a href="http://plone.org/products/qplonegooglesitemaps">Plone Google Sitemaps
125            product page</a></dt>
126            <dd>Stay tuned. We are preparing new and fresh releases. Product page will
127            help you to keep informed about them.</dd>
128            <dt><a href="http://projects.quintagroup.com/products/wiki/qPloneGoogleSitemaps">Plone Google Sitemaps documentation area.</dt>
129            <dd>Visit product's documentation area to familiarize yourself with quintagroup.plonegooglesitemaps product in
130            more details.
131            </dd>
132
133            </dl>
134        </div>
135    </div>
136  </div>
137</body>
138</html>
Note: See TracBrowser for help on using the repository browser.