- 1Share
Multipurpose Drupal Theme is an elegant and flat responsive theme design by Devsaran. This theme could easily be used for a blog, small business, portfolio or a variety of other websites.
Multipurpose Drupal Theme theme was designed using flat elements for the header, navigation, buttons and more. This sharp design is elegant, modern and functional. The clean elements are easy for users to understand and make navigating your website a pleasure.
Features
- Responsive, Mobile-Friendly Theme
- Simple, Minimal and Clean Design
- 1-column and 2-columns layout
- Mobile support (Smartphone, Tablet, Android, iPhone, etc)
- Flex Image Slideshow
- Multi-level drop-down menus (Multilingual menu)
- HTML5 & super clean markup
- A total of 12 block regions
- Drupal standards compliant and Supported standard theme features
- Google Font and nice typography
- Ideal for business, company and portfolio sites
- Detailed CSS rules for Typography, Forms Elements, Node Teaser, Comments, etc.
Version Control
One-Time Only
Setting up repository for the first time
git clone --branch 7.x-1.x https://git.drupal.org/project/multipurpose.git
cd multipurpose
Routinely
The headings below are not sequential. What you choose to do depends on where you are in your process.
Checking your repository status
To see what you will commit by running git commit
and what you could commit by running git add
before running git commit
.
git status
Switching to a different branch
When you clone the repository you have access to all the branches and tags. The first command shows your choices. The second command makes the switch. See branching and tagging for details.
git branch -a
git checkout [branchname]
Patching
Getting ready to create or apply patches
If you have not already cloned the repository, follow the directions above for setting up this repository in your local environment. Be sure you are on the branch you wish to patch, then ensure it is up-to-date with the following command:
git pull origin 7.x-1.x
Creating a patch
For most improvements, use the following command after making your changes:
git diff > [description]-[issue-number]-[comment-number].patch
For more complex improvements that require adding/removing files, work over the course of multiple days including Git commits, or collaboration with others, see the Advanced patch workflow.
Applying a patch
Download the patch to your working directory. Apply the patch with the following command:
git apply -v [patchname.patch]
To avoid accidentally including the patch file in future commits, remove it:
rm [patchname.patch]
When you’re done: Reverting uncommited changes
Revert changes to a specific file:
git checkout [filename]
Revert changes to the whole working tree:
git reset --hard