2015-03-16 21:18:03 +00:00
|
|
|
---
|
|
|
|
title: Writing a .info file for a Drupal 7 theme
|
2020-03-08 14:32:13 +00:00
|
|
|
date: 2012-05-23
|
2018-12-31 12:13:05 +00:00
|
|
|
excerpt: An example .info file for a Drupal 7 theme.
|
2015-03-16 21:18:03 +00:00
|
|
|
tags:
|
2015-06-14 02:27:41 +00:00
|
|
|
- theming
|
|
|
|
- drupal-theming
|
|
|
|
- drupal
|
|
|
|
- code
|
2015-03-16 21:18:03 +00:00
|
|
|
---
|
2020-03-08 17:52:59 +00:00
|
|
|
|
2017-03-16 08:09:52 +00:00
|
|
|
```language-ini
|
2015-03-16 21:18:03 +00:00
|
|
|
name = My Theme
|
|
|
|
description = A description of my theme
|
|
|
|
core = 7.x
|
|
|
|
|
|
|
|
# Add a base theme, if you want to use one.
|
|
|
|
base = mybasetheme
|
|
|
|
|
|
|
|
# Define regions, otherwise the default regions will be used.
|
|
|
|
regions[header] = Header
|
|
|
|
regions[navigation] = Navigation
|
|
|
|
regions[content] = Content
|
|
|
|
regions[sidebar] = Sidebar
|
|
|
|
regions[footer] = Footer
|
|
|
|
|
2020-03-08 17:52:59 +00:00
|
|
|
# Define which features are available. If none are specified, all the default
|
2015-03-16 21:18:03 +00:00
|
|
|
# features will be available.
|
|
|
|
features[] = logo
|
|
|
|
features[] = name
|
|
|
|
features[] = favicon
|
|
|
|
|
|
|
|
# Add stylesheets
|
|
|
|
stylesheets[all][] = css/reset.css
|
|
|
|
stylesheets[all][] = css/mytheme.css
|
|
|
|
stylesheets[print][] = css/print.css
|
|
|
|
|
|
|
|
# Add javascript files
|
|
|
|
styles[] = js/mytheme.js
|
2017-03-16 08:09:52 +00:00
|
|
|
```
|