How to add identical text to sveral pages?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Jan

    How to add identical text to sveral pages?

    Hi

    I have website that uses css to control the look and position of various
    blocks of content. Some of these blocks contain the same content for every
    page in the site, eg horizontal and vertical blocks containing links to
    other pages in the site. It mimics a frames based look without the frames
    ( I wanted the site to be as Google friendly as possible)

    Is there a way of implementing the site so that I don't have to type in the
    text and links in every page?

    Thanks for spending the time on me!

    J


  • Steve Easton

    #2
    Re: How to add identical text to sveral pages?

    Use an "include" page that contains the link info, and then include it in every page.
    Insert > Web Component > Included content.


    --
    Steve Easton
    Microsoft MVP FrontPage
    95isalive
    This site is best viewed......... .........
    ............... ............... .with a computer

    "Jan" <JanetMcDonald6 7@hotmail.com> wrote in message
    news:d81jul$vkb $1@newsg4.svr.p ol.co.uk...[color=blue]
    > Hi
    >
    > I have website that uses css to control the look and position of various
    > blocks of content. Some of these blocks contain the same content for every
    > page in the site, eg horizontal and vertical blocks containing links to
    > other pages in the site. It mimics a frames based look without the frames
    > ( I wanted the site to be as Google friendly as possible)
    >
    > Is there a way of implementing the site so that I don't have to type in the
    > text and links in every page?
    >
    > Thanks for spending the time on me!
    >
    > J
    >
    >[/color]


    Comment

    • David Dorward

      #3
      Re: How to add identical text to sveral pages?

      Jan wrote:
      [color=blue]
      > Some of these blocks contain the same content for every
      > page in the site[/color]
      [color=blue]
      > Is there a way of implementing the site so that I don't have to type in
      > the text and links in every page?[/color]



      --
      David Dorward <http://blog.dorward.me .uk/> <http://dorward.me.uk/>
      Home is where the ~/.bashrc is

      Comment

      • William Hughes

        #4
        Re: How to add identical text to sveral pages?

        On Mon, 06 Jun 2005 19:07:57 +0100, in comp.infosystem s.www.authoring.html David
        Dorward <dorward@yahoo. com> wrote:
        [color=blue]
        > Jan wrote:
        >[color=green]
        > > Some of these blocks contain the same content for every
        > > page in the site[/color]
        >[color=green]
        > > Is there a way of implementing the site so that I don't have to type in
        > > the text and links in every page?[/color]
        >
        > http://www.allmyfaqs.com/faq.pl?Incl...ile_in_another[/color]

        And, for a quick example...

        In *.css -

        /* Divisions */

        div.menu { float: left; width: 25%; color: #000000; background: #c0c0c0
        url(./img/background-menu.gif) }
        div.main { float: right; width: 73% }
        /* 2 per cent gutter for separation between menu and body */

        In *.htm -

        <!-- ^ Header stuff up thataway ^ -->

        <div class=menu>
        <!--#include virtual="./menu.htm"-->
        </div>

        <div class=main>

        <a name="top"> </a>

        <!-- PAGE CONTENT HERE -->

        </div>
        </body>
        </html>

        Comment

        Working...