Instantly share code, notes, and snippets.
Engineering Manager at Kanopi Studios.
#Drupal #WordPress #SEO #capecod #pizza #pasta #clamming #estatesales
- West Dennis, MA
- https://jimbir.ch
- in/jimbirch
- https://kanopi.com/staff/jim-birch/
- @thejimbirch
thejimbirch
/ Bootstrap Navbar in Drupal 8 - block--system-branding-block.html.twig
Last active
April 6, 2016 13:57
This file contains hidden or 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
{% block content %} | |
{% if site_logo %} | |
<div class="navbar-header"> | |
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar"> | |
<span class="sr-only">Toggle navigation</span> | |
Menu | |
</button> | |
<a class="navbar-brand" href="{{ path('<front>') }}" title="{{ site_name }}" rel="home"> | |
<img src="{{ site_logo }}" alt="{{ site_name }}" /> | |
</a> |
thejimbirch
/ Bootstrap Navbar in Drupal 8 - theme.libraries.yml
Last active
April 6, 2016 14:04
This file contains hidden or 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
global-styling: | |
version: 1.x | |
css: | |
base: | |
css/bootstrap.css: {} | |
js: | |
js/bootstrap.js: {} | |
dependencies: | |
- core/jquery |
thejimbirch
/ Bootstrap Navbar in Drupal 8 - theme.info.yml
Last active
April 6, 2016 13:54
This file contains hidden or 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
core: 8.x | |
type: theme | |
base theme: stable | |
name: 'Theme Name' | |
description: 'Theme Name is a custom theme based on Stable (not theme)' | |
regions: | |
page_top: 'Page Top' | |
page_bottom: 'Page Bottom' |
thejimbirch
/ Bootstrap Navbar in Drupal 8 - page.html.twig
Last active
April 6, 2016 13:56
This file contains hidden or 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
{% if page.header %} | |
<nav class="navbar"> | |
<div class="container-fluid">{{ page.header }}</div> | |
</nav> | |
{% endif %} |
NewerOlder