# 0Settings.pm
#   Settings for SamR's Site Suite, modified for Hypermedia 101
#
#  Copyright (c) 1997-1999 Samuel A. Rebelsky.  All rights reserved.


######################################################################
# Module Setup #
################

package Settings;
use Exporter ();
@ISA = (Exporter);
@EXPORT = qw(
);


######################################################################
# Variables #
#############

# You can change the following variables to help customize the
# appearance of your pages.

# The email address of your webmaster
$webmaster = "rebelsky\@math.grin.edu";

# The general name of your site
$site_name = "Hypermedia 101: The Technology and Its Implications";

# A short name for the site
$short_site_name = "Hypermedia 101";

# Type of HTML translation (1=simple, 2=columns, 3=plain, ...)
$translation = 1;

# The URL of the main directory in your site.  Make sure it ends
# with a slash.
$site_url = "http://www.math.grin.edu/~rebelsky/Hypermedia101";

# The base directory on the local machine
$basedir = "/home/rebelsky/public_html/Hypermedia101";

# The default author of pages
$page_author = "";

# Store phone number
$store_phone = "";

# Store's fax number
$store_fax = "";

# Here's where e-mail goes.  Note that you need a backslash before
# the at sign.
$sitemail = "rebelsky\@math.grin.edu";

# This is a blurb that appears at the top of every page
$blurb = "";

# Keywords that we want on every page in a meta tag
$keywords = "";

# A description of the place that we want (hidden) in every page.  This
# needs to be deleted since it is now used for "every" Page
$description = "";

# These are the links that appear at the top and bottom of every page.
# You should use pairs of name, file as in the example.
@links = (
  "Front Door", "index.html",
  "Essays", "Essays/index.html",
  "Glossary", "Glossary/index.html",
  "References", "References/index.html",
);

# This is extra information for the start and end of each file
# It might be used to advertise specials or to indicate draft status
# or ...
$startinfo = "";
$endinfo = "";


######################################################################
# Initialization #
##################

# Calculate the lists of links
init_links();

1;

