-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #76 from palantirnet/3037751-template
Test template file
- Loading branch information
Showing
6 changed files
with
88 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{# | ||
/** | ||
* @file | ||
* Theme override for a 'form' element. | ||
* | ||
* Available variables | ||
* - attributes: A list of HTML attributes for the wrapper element. | ||
* - form: The form element array. | ||
* | ||
* @see template_preprocess_form() | ||
*/ | ||
#} | ||
<div class="container-inline"> | ||
{{ form }} | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{# | ||
/** | ||
* @file | ||
* Federated search's theme implementation for a search form block. | ||
* | ||
* Available variables: | ||
* - search_form: The content of this block. | ||
* | ||
* @see template_preprocess_block() | ||
* @see search_preprocess_block() | ||
* | ||
* @ingroup themeable | ||
*/ | ||
#} | ||
{{ search_form }} |