1 |
caf16a48
|
Assos Assos
|
<!-- @file Documentation landing page and topics for the http://drupal-bootstrap.org site. -->
|
2 |
|
|
<!-- @mainpage -->
|
3 |
|
|
# Drupal Bootstrap Documentation
|
4 |
|
|
|
5 |
|
|
{.lead} The official documentation site for the [Drupal Bootstrap] base theme
|
6 |
|
|
|
7 |
|
|
The majority of this site is automatically generated from source files
|
8 |
|
|
located through out the project's repository. Topics are extracted from Markdown
|
9 |
|
|
files and the rest is extracted from embedded PHP comments.
|
10 |
|
|
|
11 |
|
|
---
|
12 |
|
|
|
13 |
|
|
## Topics
|
14 |
|
|
|
15 |
|
|
Below are some topics to help get you started using the [Drupal Bootstrap] base
|
16 |
|
|
theme. They are ordered based on the level one typically progresses while using
|
17 |
|
|
a base theme like this.
|
18 |
|
|
|
19 |
|
|
#### @link faq FAQ @endlink
|
20 |
|
|
|
21 |
|
|
#### @link getting_started Getting Started @endlink
|
22 |
|
|
|
23 |
|
|
#### @link subtheme Sub-Theming @endlink
|
24 |
|
|
- @link subtheme_settings Theme Settings @endlink
|
25 |
|
|
- @link subtheme_helper_functions Helper Functions @endlink
|
26 |
|
|
- @link subtheme_cdn CDN Starterkit @endlink
|
27 |
|
|
- @link subtheme_less LESS Starterkit @endlink
|
28 |
|
|
|
29 |
|
|
#### @link registry Theme Registry @endlink
|
30 |
|
|
- @link theme_preprocess Preprocess Functions (.vars.php) @endlink
|
31 |
|
|
- @link theme_process Process Functions (.vars.php) @endlink
|
32 |
|
|
- @link templates Templates (.tpl.php) @endlink
|
33 |
|
|
- @link theme_functions Theme Functions (.func.php) @endlink
|
34 |
|
|
|
35 |
|
|
#### @link api APIs @endlink
|
36 |
|
|
|
37 |
|
|
#### @link contribute Contribute @endlink
|
38 |
|
|
- @link contribute_maintainers Project Maintainers @endlink
|
39 |
|
|
|
40 |
|
|
---
|
41 |
|
|
|
42 |
|
|
## Terminology
|
43 |
|
|
|
44 |
|
|
The term **"bootstrap"** can be used excessively through out this project's
|
45 |
|
|
documentation. For clarity, we will always attempt to use this word verbosely
|
46 |
|
|
in one of the following ways:
|
47 |
|
|
|
48 |
|
|
- **[Drupal Bootstrap]** refers to the Drupal base theme project.
|
49 |
|
|
- **[Bootstrap Framework](http://getbootstrap.com)** refers to the external
|
50 |
|
|
front end framework.
|
51 |
|
|
- **[drupal_bootstrap](https://api.drupal.org/apis/drupal_bootstrap)** refers
|
52 |
|
|
to Drupal's bootstrapping process or phase.
|
53 |
|
|
|
54 |
|
|
When referring to files inside the [Drupal Bootstrap] project directory, they
|
55 |
|
|
will always start with `./bootstrap` and continue to specify the full path to
|
56 |
|
|
the file or directory inside it. For example, the file that is responsible for
|
57 |
|
|
displaying the text on this page is located at `./bootstrap/docs/README.md`.
|
58 |
|
|
|
59 |
|
|
When referring to files inside a sub-theme, they will always start with
|
60 |
|
|
`./subtheme/` and continue to specify the full path to the file or directory
|
61 |
|
|
inside it. For example, the primary file Drupal uses to determine if a theme
|
62 |
|
|
exists is: `./subtheme/subtheme.info`, where `subtheme` is the machine name of
|
63 |
|
|
your sub-theme.
|
64 |
|
|
|
65 |
|
|
[Drupal Bootstrap]: https://www.drupal.org/project/bootstrap |