Creating A New Portal Or Project

THL Toolbox > Developers' Zone > Web Development > Creating A New Portal Or Project

Creating A New Portal Or Project

Note: Before beginning a new portal-project you should have the following preparations completed.

  • Software installed on your personal computer to edit the various template files. NEED LINK HERE
  • You should also have PHP running locally on your PC. NEED LINK HERE
  • Lastly you should have subversion installed and have created the necessary SVN setup on your PC for the THL Quandu directories. NEED LINK HERE

So if all required steps above are completed let's begin creating a new THL Portal site…

1. Create a new folder (directory) name and location on the server for the new portal.

Using your PC's local THL Quandu SVN directory, name and locate this new portal's "root" folder accordingly based on the standards established throughout the THL Quandu server directory. In this new directory folder that acts as the "home" or "root level" of the new portal's directory you should add 4 new folders: "images", "css", "js", "documentation". Then in the images folder add 1 additional folder: "originals"

2. Next review and select one of several portal template styles.

  1. The first template option can be seen in use online, Example: THL Home Page layout itself.
  2. Next template option can be clicking the tabs on the THL global navbar; see Example: Encyclopedias
  3. Then moving onto the third portal template used commonly for a sub-portal's home pages, Example: Tibetan Literary Encyclopedia

(-NOTE- here is where we should note that these templates ready-to-use are located in the /templates folder, named: portal-home1-template.php, portal-home2-template.php, portal-home3-template.php - you agree??)

3. Add the following default template files to your new portal directory at the root level.

  1. Add 1 copy: Portal homepage layout: (Example, portal-home1-template.php) Note: rename this file to index.php before committing it to SVN
  2. Add 1 copy: (side-column.php)
  3. Add 1 copy: (masthead.php)
  4. Add 1 copy: (masthead-navbar.php)

So now if you've completed all of the above instructions you will see in your portal's directory 5 template files and 4 folders

4. Customize your default home page portal template files

New Title Image

Edit (masthead.php) to reflect the new "Title" image and links for this portal.
NOTE: Change the "absolute path" and file name to the new Title image for the portal you will put in the images folder under the new portal directory (Example from Sera Monastery Portal: /places/monasteries/sera/images/masthead-title-sera.png).

Also edit the title image's dimensions in the img tag for the width-height, and add alt="name" for accessibility standards.

Example:

<div id="masthead-title">&#xd;
&lt;a href="/absolute path to new portal/index.php"&gt;&#xd;
&lt;img src="/absolute path to new portal/images/masthead-title-newportalname.png" width="#" height="#" alt="Name of new Portal" /&gt;&#xd;
&lt;/a&gt;&#xd;
&lt;/div&gt;

In some places, the title will be included within the banner image, in which case the src attribute of the image tag for the title (above) should be set as follows:

&lt;img src="/global/images/transparent.gif" width="350" height="50" alt="Homepage Link" /&gt;

New Banner Image

This new image is called from a new "local" style sheet you will create so first make the new blank CSS file called whatever your portal's directory name is, (Example: sera.css) Put this file in the CSS folder at the root level of your portal directory and add the following style edited according to your own image's directory path and name.

Example: &#xd;&#xd;
#masthead-banner { &#xd;
&#x20;&#x20;overflow:hidden; &#xd;
&#x20;&#x20;background:transparent url(/absolute path to new portal/images/masthead-banner-newportalname.jpg) no-repeat 100% 100%; &#xd;
}

The part of the style after the url refers to the repeating and positioning of the background image. Always use "no-repeat" as the banner image is the full width of the page. The two "100%" represent the horizontal and vertical alignment respectively. These can also be "right top". As mentioned above, the banner image will sometimes contain the title. In that case, the CSS style for the banner should be positioned to the "left top". An example of a page with a banner whose image includes the title text is the THL environment page (/places/environment/).

New Navbar Tabs and Links

Edit (masthead-navbar.php) to reflect the new names and links for the global tabs on the masthead.

Example from Tibetan Literary Encyclopedia Note, not all links are completed.&#xd;&#xd;
&lt;ul id="masthead-navbar"&gt;&#xd;
&#x20;&#x20;&lt;li class="home alpha"&gt;&lt;a href="/encyclopedias/literary/index.php"&gt;&lt;em&gt;&lt;b&gt;Home&lt;/b&gt;&lt;/em&gt;&lt;/a&gt;&lt;/li&gt;&#xd;
&#x20;&#x20;&lt;li class="canons"&gt;&lt;a href="/encyclopedias/literary/canons/index.php"&gt;&lt;em&gt;&lt;b&gt;Canons&lt;/b&gt;&lt;/em&gt;&lt;/a&gt;&lt;/li&gt;&#xd;
&#x20;&#x20;&lt;li class="authors"&gt;&lt;a href="#nogo"&gt;&lt;em&gt;&lt;b&gt;Authors&lt;/b&gt;&lt;/em&gt;&lt;/a&gt;&lt;/li&gt;&#xd;
&#x20;&#x20;&lt;li class="sects"&gt;&lt;a href="#nogo"&gt;&lt;em&gt;&lt;b&gt;Sects&lt;/b&gt;&lt;/em&gt;&lt;/a&gt;&lt;/li&gt;	&#xd;
&#x20;&#x20;&lt;li class="periods"&gt;&lt;a href="#nogo"&gt;&lt;em&gt;&lt;b&gt;Periods&lt;/b&gt;&lt;/em&gt;&lt;/a&gt;&lt;/li&gt;&#xd;
&#x20;&#x20;&lt;li class="genres"&gt;&lt;a href="#nogo"&gt;&lt;em&gt;&lt;b&gt;Genres&lt;/b&gt;&lt;/em&gt;&lt;/a&gt;&lt;/li&gt;&#xd;
&#x20;&#x20;&lt;li class="oral"&gt;&lt;a href="#nogo"&gt;&lt;em&gt;&lt;b&gt;Oral&lt;/b&gt;&lt;/em&gt;&lt;/a&gt;&lt;/li&gt;&#xd;
&#x20;&#x20;&lt;li class="instruction"&gt;&lt;a href="#nogo"&gt;&lt;em&gt;&lt;b&gt;Instruction&lt;/b&gt;&lt;/em&gt;&lt;/a&gt;&lt;/li&gt;&#xd;
&lt;/ul&gt;

Note: This example is from the THL Global navbar stylesheet so the class names will be different &#xd;
for each portal to reflect the individual tab names created for the portal's global navbar. ONLY change the &#xd;
class names themselves for your portal; do not change any elements, pseudo classes, commas, brackets, or styles.&#xd;&#xd;

.home #masthead-navbar li.home a, &#xd;
.projects #masthead-navbar li.projects a, &#xd;
.collections #masthead-navbar li.collections a, &#xd;
.places #masthead-navbar li.places a, &#xd;
.encyclopedias #masthead-navbar li.encyclopedias a, &#xd;
.reference #masthead-navbar li.reference a, &#xd;
.education #masthead-navbar li.education a, &#xd;
.community #masthead-navbar li.community a, &#xd;
.tools #masthead-navbar li.tools a { &#xd;
&#x20;&#x20;color:#CE570F; &#xd;
&#x20;&#x20;background:#fff url(/global/images/button3-L.jpg) no-repeat left top; &#xd;
&#x20;&#x20;padding-left:20px; &#xd;
}&#xd;
&#xd;
.home #masthead-navbar li.home a b, &#xd;
.projects #masthead-navbar li.projects a b, &#xd;
.collections #masthead-navbar li.collections a b, &#xd;
.places #masthead-navbar li.places a b, &#xd;
.encyclopedias #masthead-navbar li.encyclopedias a b, &#xd;
.reference #masthead-navbar li.reference a b, &#xd;
.education #masthead-navbar li.education a b, &#xd;
.community #masthead-navbar li.community a b, &#xd;
.tools #masthead-navbar li.tools a b { &#xd;
&#x20;&#x20;color:#CE570F; &#xd;
&#x20;&#x20;background:#fff url(/global/images/button3-R.jpg) no-repeat right top; &#xd;
&#x20;&#x20;padding-top:4px;  &#xd;
}&#xd;
&#xd;
.home #masthead-navbar li.home a:hover, &#xd;
.projects #masthead-navbar li.projects a:hover, &#xd;
.collections #masthead-navbar li.collections a:hover, &#xd;
.places #masthead-navbar li.places a:hover, &#xd;
.encyclopedias #masthead-navbar li.encyclopedias a:hover, &#xd;
.reference #masthead-navbar li.reference a:hover, &#xd;
.education #masthead-navbar li.education a:hover, &#xd;
.community #masthead-navbar li.community a:hover, &#xd;
.tools #masthead-navbar li.tools a:hover {  &#xd;
&#x20;&#x20;text-decoration:none; &#xd;
&#x20;&#x20;background:#fff url(/global/images/button3-L.jpg) no-repeat left top; &#xd;
}&#xd;
&#xd;
.home #masthead-navbar li.home a:hover b, &#xd;
.projects #masthead-navbar li.projects a:hover b, &#xd;
.collections #masthead-navbar li.collections a:hover b, &#xd;
.places #masthead-navbar li.places a:hover b, &#xd;
.encyclopedias #masthead-navbar li.encyclopedias a:hover b, &#xd;
.reference #masthead-navbar li.reference a:hover b, &#xd;
.education #masthead-navbar li.education a:hover b, &#xd;
.community #masthead-navbar li.community a:hover b, &#xd;
.tools #masthead-navbar li.tools a:hover b { &#xd;
&#x20;&#x20;color:#00c; &#xd;
&#x20;&#x20;text-decoration:underline; &#xd;
&#x20;&#x20;background:#fff url(/global/images/button3-R.jpg) no-repeat right top; &#xd;
}&#xd;

New Secondary Navigation

Edit (side-column.php) to create the new secondary navigation in the side column. You may also decide to add other php includes in addition to the default, side-column-search.php, to offer other portal-related links.

Example You will need to edit the new link path, the new tooltip descriptive text and the new link name. 
The descriptive text can be changed or added to easily at a later date.

&lt;!-- begin side column search php --&gt;
&lt;? include_once "$droot/global/php/side-column-search.php" ; ?&gt;
&lt;!-- end side column search php --&gt;

&lt;div class="list0" id="list0"&gt;
&lt;div class="list1" id="list1"&gt;

    &lt;h3 class="head"&gt;&lt;a href="#nogo"&gt;Top Level Directory Name&lt;/a&gt;&lt;/h3&gt;			
	
      &lt;ul&gt;
	&lt;li&gt;&lt;a href="new link absolute path" hreflang="new descriptive tooltip text"&gt;new link name&lt;/a&gt;&lt;/li&gt;
        &lt;li&gt;&lt;a href="new link absolute path" hreflang="new descriptive tooltip text"&gt;new link name&lt;/a&gt;&lt;/li&gt;
        &lt;li&gt;&lt;a href="new link absolute path" hreflang="new descriptive tooltip text"&gt;new link name&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href="new link absolute path" hreflang="new descriptive tooltip text"&gt;new link name&lt;/a&gt;&lt;/li&gt;
        &lt;li&gt;&lt;a href="new link absolute path" hreflang="new descriptive tooltip text"&gt;new link name&lt;/a&gt;&lt;/li&gt;
        &lt;li&gt;&lt;a href="new link absolute path" hreflang="new descriptive tooltip text"&gt;new link name&lt;/a&gt;&lt;/li&gt;
     &lt;/ul&gt;

     &lt;? include_once "$droot/global/php/side-column-thdl-links.php" ; ?&gt;
		
&lt;/div&gt;

&lt;/div&gt;

Creating a Section Homepage that Has Lists of Resources Rather than the Standard Section Homepage

For example, the Essays section homepage for the Sera Monastery project (external link: http://www.thlib.org/places/monasteries/sera/essays/)

Note in particular the following code:

  • <div class="container-wrapper essay-list">
  • &lt;dd class="author"&gt;by &lt;strong&gt;José Cabezón&lt;/strong&gt;&lt;/dd&gt;
  • &lt;dt class="sub-header"&gt;Memorization&lt;/dt&gt;
&lt;? $droot = $_SERVER['DOCUMENT_ROOT'];  ?&gt;

&lt;?
$add_header = '&lt;link rel="stylesheet" typetext/css" href="/places/monasteries/sera/css/sera.css" media="all" /&gt;
&lt;script type="text/javascript" src="/places/monasteries/sera/js/sera.js"&gt; &lt;/script&gt; ';

include_once  "$droot/global/php/header.php" ;
?&gt;

&lt;body class="seraessays"&gt;

&lt;!-- begin masthead php --&gt;
&lt;? include_once "$droot/places/monasteries/sera/masthead.php" ; ?&gt;
&lt;!-- end masthead include --&gt;


&lt;!-- begin content --&gt;
&lt;div id="content"&gt;
&lt;div class="shell-1"&gt;
&lt;h1&gt;Essays and Readings on Sera Monastery&lt;/h1&gt;

&lt;div class="container-wrapper essay-list"&gt;
&lt;div class="container-left-5050"&gt;


&lt;dl&gt;
&lt;dt&gt;Sera Monastery and Its Colleges&lt;/dt&gt;
&lt;dd class="author"&gt;by &lt;strong&gt;José Cabezón&lt;/strong&gt;&lt;/dd&gt;
&lt;dd&gt;&lt;a href="#essay=/cabezon/sera/intro/"&gt;An Introduction to Sera Monastery&lt;/a&gt;&lt;/dd&gt;
&lt;dd&gt;&lt;a href="#essay=/cabezon/sera/colleges/intro/s/b1"&gt;Types of Colleges and Their Mission&lt;/a&gt;&lt;/dd&gt;
&lt;dd&gt;&lt;a href="#essay=/cabezon/sera/colleges/intro/s/b2"&gt;The Rise and Evolution of Sera’s Colleges&lt;/a&gt;&lt;/dd&gt;
&lt;dd&gt;&lt;a href="#essay=/cabezon/sera/colleges/intro/s/b23"&gt;The Jé College&lt;/a&gt; (&lt;em&gt;grwa tshang byes&lt;/em&gt;)&lt;/dd&gt;
&lt;dd&gt;&lt;a href="#essay=/cabezon/sera/colleges//intro/s/b24"&gt;The Mé College&lt;/a&gt; (&lt;em&gt;grwa tshang smad&lt;/em&gt;)&lt;/dd&gt;
&lt;dd&gt;&lt;a href="#essay=/cabezon/sera/colleges//intro/s/b25"&gt;The Tantric College&lt;/a&gt; (&lt;em&gt;sngags pa grwa tshang&lt;/em&gt;)&lt;/dd&gt;
&lt;/dl&gt;

&lt;dl&gt;
&lt;dt&gt;The Hermitages of Sera&lt;/dt&gt;
&lt;dd class="author"&gt;by &lt;strong&gt;José Cabezón&lt;/strong&gt;&lt;/dd&gt;
&lt;dd&gt;&lt;a href="#essay=/cabezon/sera/herm/intro/"&gt;An Introduction to the Hermitages of Sera&lt;/a&gt;&lt;/dd&gt;
&lt;!--
&lt;dd&gt;&lt;a href="#essay=/cabezon/sera/herm/drakri/s/c1"&gt;Hermitages Glossary&lt;/a&gt;&lt;/dd&gt;
--&gt;
&lt;dd&gt;&lt;a href="#essay=/cabezon/sera/herm/chupzang/"&gt;Chupzang Nunnery&lt;/a&gt; (&lt;em&gt;chu bzang dgon&lt;/em&gt;)&lt;/dd&gt;
&lt;dd&gt;&lt;a href="#essay=/cabezon/sera/herm/drakri/"&gt;Drakri Hermitage&lt;/a&gt; (&lt;em&gt;brag ri ri khrod&lt;/em&gt;)&lt;/dd&gt;
&lt;dd&gt;&lt;a href="#essay=/cabezon/sera/herm/garu/"&gt;Garu Nunnery&lt;/a&gt; (&lt;em&gt;ga ru dgon pa&lt;/em&gt;)&lt;/dd&gt;
&lt;dd&gt;&lt;a href="#essay=/cabezon/sera/herm/jokpo/"&gt;Jokpo Hermitage&lt;/a&gt; (&lt;em&gt;’jog po ri khrod&lt;/em&gt;)&lt;/dd&gt;
&lt;dd&gt;&lt;a href="#essay=/cabezon/sera/herm/keutsang/"&gt;Keutsang Hermitage&lt;/a&gt; (&lt;em&gt;ke’u tshang ri khrod&lt;/em&gt;)&lt;/dd&gt;
&lt;dd&gt;&lt;a href="#essay=/cabezon/sera/herm/keutsangshar/"&gt;Keutsang East Hermitage&lt;/a&gt; (&lt;em&gt;ke’u tshang shar ri khrod&lt;/em&gt;)&lt;/dd&gt;
&lt;dd&gt;&lt;a href="#essay=/cabezon/sera/herm/keutsangnup/"&gt;Keutsang West Hermitage&lt;/a&gt; (&lt;em&gt;ke’u tshang nub ri khrod&lt;/em&gt;)&lt;/dd&gt;
&lt;dd&gt;&lt;a href="#essay=/cabezon/sera/herm/khardo/"&gt;Khardo Hermitage&lt;/a&gt; (&lt;em&gt;mkhar do ri khrod&lt;/em&gt;)&lt;/dd&gt;
&lt;dd&gt;&lt;a href="#essay=/cabezon/sera/herm/negodong/"&gt;Negodong Nunnery&lt;/a&gt; (&lt;em&gt;gnas sgo gdong dgon pa&lt;/em&gt;)&lt;/dd&gt;
&lt;dd&gt;&lt;a href="#essay=/cabezon/sera/herm/nenang/"&gt;Nenang Nunnery&lt;/a&gt; (&lt;em&gt;gnas nang ri khrod&lt;/em&gt;)&lt;/dd&gt;
&lt;dd&gt;&lt;a href="#essay=/cabezon/sera/herm/pabongkha/"&gt;Pabongkha Hermitage&lt;/a&gt; (&lt;em&gt;pha bong kha ri khrod&lt;/em&gt;)&lt;/dd&gt;
&lt;dd&gt;&lt;a href="#essay=/cabezon/sera/herm/panglung/"&gt;Panglung Hermitage&lt;/a&gt; (&lt;em&gt;spang lung ri khrod&lt;/em&gt;)&lt;/dd&gt;
&lt;dd&gt;&lt;a href="#essay=/cabezon/sera/herm/purbuchok/"&gt;Purbuchok Hermitage&lt;/a&gt; (&lt;em&gt;phur bu lcog ri khrod&lt;/em&gt;)&lt;/dd&gt;
&lt;dd&gt;&lt;a href="#essay=/cabezon/sera/herm/rakhadrak/"&gt;Rakhadrak Hermitage&lt;/a&gt; (&lt;em&gt;ra kha brag ri khrod&lt;/em&gt;)&lt;/dd&gt;
&lt;dd&gt;&lt;a href="#essay=/cabezon/sera/herm/choding/"&gt;Sera Chöding Hermitage&lt;/a&gt; (&lt;em&gt;se ra chos sdings ri khrod&lt;/em&gt;)&lt;/dd&gt;
&lt;dd&gt;&lt;a href="#essay=/cabezon/sera/herm/gonpasar/"&gt;Sera Gönpasar Hermitage&lt;/a&gt; (&lt;em&gt;se ra dgon pa gsar ri khrod&lt;/em&gt;)&lt;/dd&gt;
&lt;dd&gt;&lt;a href="#essay=/cabezon/sera/herm/utse/"&gt;Sera Utsé Hermitage&lt;/a&gt; (&lt;em&gt;se ra dbu rtse ri khrod&lt;/em&gt;)&lt;/dd&gt;
&lt;dd&gt;&lt;a href="#essay=/cabezon/sera/herm/takten/"&gt;Takten Hermitage&lt;/a&gt; (&lt;em&gt;rtags bstan ri khrod&lt;/em&gt;)&lt;/dd&gt;
&lt;dd&gt;&lt;a href="#essay=/cabezon/sera/herm/trashicholing/"&gt;Trashi Chöling Hermitage&lt;/a&gt; (&lt;em&gt;bkra shis chos gling ri khrod&lt;/em&gt;)&lt;/dd&gt;
&lt;/dl&gt;

&lt;/div&gt;



&lt;div class="container-right-5050"&gt;

&lt;br /&gt;
&lt;div class="img-left-shadow" style="margin-bottom:25px;"&gt;
&lt;div&gt;&lt;img src="/places/monasteries/sera/essays/images/intro-A1900.jpg" width="223" height="170" alt="" /&gt;&lt;/div&gt;
&lt;h6&gt;&lt;/h6&gt;
&lt;/div&gt;

&lt;div class="container-1col"&gt;

&lt;dl&gt;
&lt;dt&gt;Tibetan Monastic Education&lt;/dt&gt;
&lt;dd class="author"&gt;by &lt;strong&gt;Georges Dreyfus&lt;/strong&gt;&lt;/dd&gt;
&lt;dd&gt;&lt;a href="#essay=/dreyfus/drepung/monasticed/intro/"&gt;Introduction to Monastic Education&lt;/a&gt;&lt;/dd&gt;
&lt;dt class="sub-header"&gt;Memorization&lt;/dt&gt;
&lt;!--
&lt;dd&gt;&lt;a href="#essay=/dreyfus/drepung/monasticed/memorization/"&gt;The Practice of Memorization&lt;/a&gt;&lt;/dd&gt;
&lt;dd&gt;&lt;a href="#essay=/dreyfus/drepung/monasticed/monasteries/"&gt;Tibetan Monasteries: Islands of Peace or Oceans of Noise?&lt;/a&gt;&lt;/dd&gt;
--&gt;
&lt;dd&gt;&lt;a href="#essay=/dreyfus/drepung/monasticed/discipline/"&gt;Memorization and Liturgical Discipline&lt;/a&gt;&lt;/dd&gt;
&lt;dd&gt;&lt;a href="#essay=/dreyfus/drepung/monasticed/curriculum/"&gt;The Role of Memorization in the Curriculum&lt;/a&gt;&lt;/dd&gt;
&lt;!--
&lt;dt class="sub-header"&gt;Texts and the Curriculum&lt;/dt&gt;
&lt;dd&gt;&lt;a href="#essay=/dreyfus/drepung/monasticed/hierarchy/b1"&gt;The Commentarial Hierarchy&lt;/a&gt;&lt;/dd&gt;
&lt;dt class="sub-header"&gt;Debate&lt;/dt&gt;
&lt;dd&gt;&lt;a href="#essay=/dreyfus/drepung/monasticed/debaterules/"&gt;Procedures and Rules of Debate&lt;/a&gt;&lt;/dd&gt;
&lt;dd&gt;&lt;a href="#essay=/dreyfus/drepung/monasticed/debatephysicality/"&gt;The Physicality of Tibetan Debates&lt;/a&gt;&lt;/dd&gt;
&lt;dd&gt;&lt;a href="#essay=/dreyfus/drepung/monasticed/debatesched/"&gt;The Schedule of Debating Institutions&lt;/a&gt;&lt;/dd&gt;
&lt;dd&gt;&lt;a href="#essay=/dreyfus/drepung/monasticed/debateexams/"&gt;Examinations and the Organization of Debate&lt;/a&gt;&lt;/dd&gt;
&lt;dt class="sub-header"&gt;Final Examinations and the Title of Geshé (&lt;em&gt;dge bshes&lt;/em&gt;)&lt;/dt&gt;
&lt;dd&gt;&lt;a href="#essay=/dreyfus/drepung/monasticed/finalexams/"&gt;Final Examinations and the Title of Geshé&lt;/a&gt; (&lt;em&gt;dge
bshes&lt;/em&gt;)&lt;/dd&gt;
--&gt;
&lt;/dl&gt;

&lt;dl&gt;
&lt;dt&gt;The Space of Sera (&lt;em&gt;se ra’i khor yug&lt;/em&gt;)&lt;/dt&gt;
&lt;dd class="author"&gt;by &lt;strong&gt;José Cabezón&lt;/strong&gt;&lt;/dd&gt;
&lt;dd&gt;&lt;a href="#essay=/cabezon/sera/spaces/s/b1"&gt;Introduction&lt;/a&gt;&lt;/dd&gt;
&lt;dd&gt;&lt;a href="#essay=/cabezon/sera/spaces/s/b2"&gt;Foreign Perspectives&lt;/a&gt;&lt;/dd&gt;
&lt;dd&gt;&lt;a href="#essay=/cabezon/sera/spaces/s/b3"&gt;Tibetan Perspectives&lt;/a&gt;&lt;/dd&gt;
&lt;dd&gt;&lt;a href="#essay=/cabezon/sera/spaces/s/b4"&gt;Architecture&lt;/a&gt;&lt;/dd&gt;
&lt;dd&gt;&lt;a href="#essay=/cabezon/sera/spaces/s/b5"&gt;Guide to the Map&lt;/a&gt;&lt;/dd&gt;


&lt;dt&gt;People at Sera&lt;/dt&gt;
&lt;dd class="author"&gt;by &lt;strong&gt;José Cabezón&lt;/strong&gt;&lt;/dd&gt;
&lt;dd&gt;&lt;a href="#essay=/cabezon/sera/people/"&gt;Introduction to People at Sera&lt;/a&gt;&lt;/dd&gt;
&lt;dd&gt;&lt;a href="#essay=/cabezon/sera/people/monks/"&gt;Monks&lt;/a&gt;&lt;/dd&gt;
&lt;dd&gt;&lt;a href="#essay=/cabezon/sera/lifeofseramonk/"&gt;The Life of a Sera Monk&lt;/a&gt; &lt;em&gt;by Geshé Rabten&lt;/em&gt;&lt;/dd&gt;
&lt;/dl&gt;

&lt;/div&gt;

&lt;/div&gt;
&lt;/div&gt;&lt;!-- end #container-wrapper --&gt;

&lt;/div&gt;
&lt;/div&gt;&lt;!-- end content --&gt;




&lt;!-- begin footer --&gt;
&lt;? include_once "$droot/global/php/footer.php" ; ?&gt;
&lt;!-- end footer --&gt;

&lt;/body&gt;
&lt;/html&gt;

&lt;!-- begin footer utility --&gt;
&lt;? include_once "$droot/global/php/footer-utility.php" ; ?&gt;
&lt;!-- end footer utility --&gt;

Provided for unrestricted use by the external link: Tibetan and Himalayan Library