Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

HTML Template to Drupal Theme

I have an HTML template. What are the steps to convert it into a Drupal 6 theme?

like image 606
Bharanikumar Avatar asked Jun 08 '26 22:06

Bharanikumar


1 Answers

Create a copy of a theme you want to modify - usually a blank theme like zen works well. You'll need to rename the files and fix the .info file.

Then you can edit the .tpl.php files. node.tpl.php is the main skeleton one. Start copying content from your html template into that file, replacing dummy content with placeholders (which you can find here.

Make sure caching is off, and you can refresh to see the changes.

like image 86
colinmarc Avatar answered Jun 10 '26 18:06

colinmarc