I have already designed a website for a client, and they would like to stick with drupal, the system they currently use. My code for one of the pages (about.php) is below. I use a few php includes for my header/menu/footer info. Please let me know if this is doable.

Thanks!

<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><head>
<!-- InstanceBeginEditable name="doctitle" -->
<title>Victor Printing </title>
<!-- InstanceEndEditable -->
<link href="css/master.css" rel="stylesheet" type="text/css">


</head>
<body class="about">
<div id="vis">
  <div id="container">

   <?php include("header.php"); ?>  
    
   <?php include("menu.php"); ?>    
 
    <!-- InstanceBeginEditable name="editable" -->
    
   <div id="info">
   
   			<h2>About Victor</h2><br>
 			<div class="infoline"></div>  			

      <div id="middlecontent">

   			<h3>Company Overview</h3>
   			<p>Over the past 90 years, Victor Printing has established itself as an industry leader through providing innovative printing solutions, high quality products and print related services at competitive prices. We recognize our success is based on our customer’s complete care and satisfaction. By continually re-evaluating and upgrading our processes and technologies, we are able to streamline the workflow, give you faster turnaround and reduced costs without sacrificing the quality you expect.</p>
   			
                        <h3>History</h3>
            <p>Victor Printing, Inc. was created when William Victor Richards started a small printing business in the basement of his parents’ home in 1919. Because of our strong personal and professional commitment to out customers, our family owned firm has grown from a one man operation to a company that is over 100 employees strong. Here is our history.</p>
      </div>
     
     <div class="clr"></div>
     
      <div id="bodybottom">
      </div>
     
    </div>

    <!--@info -->
    <!-- InstanceEndEditable --></div>
  <!--@container -->
</div><!--@bk -->


      <?php include("footer.php"); ?> 

<!-- InstanceEnd --></body></html>

Comments

hershel’s picture

Yes, it is doable. It will probably work far differently than you think, but this can be converted to Drupal.