Skip to content

Instantly share code, notes, and snippets.

@brianzelip
Created April 20, 2022 15:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brianzelip/9f8b2739557e2849ae7ef8688b87283d to your computer and use it in GitHub Desktop.
Save brianzelip/9f8b2739557e2849ae7ef8688b87283d to your computer and use it in GitHub Desktop.
nnlm2021 theme file structure
.
├── LICENSE
├── README.md
├── composer.json
├── composer.lock
├── composer.patch
├── config
│   └── sync
│   ├── ...
├── content
│   └── sync
│   ├── ...
├── drush
│   ├── Commands
│   │   └── PolicyCommands.php
│   ├── README.md
│   ├── drush.yml
│   └── sites
│   └── self.site.yml
├── load.environment.php
├── nnlm2021
├── patches
│   ├── civicrm-core-event-info.patch
│   ├── civicrm_entity-fix-in-operator.patch
│   ├── civicrm_entity_rule.patch
│   ├── cms_user_fields.patch
│   ├── js_existing_contact.patch
│   ├── membership_default_term.patch
│   └── theme_seven.patch
├── phpunit.xml.dist
├── scripts
│   └── composer
│   └── ScriptHandler.php
└── web
├── INSTALL.txt
├── README.txt
├── autoload.php
├── example.gitignore
├── index.php
├── modules
│   ├── README.txt
│   └── custom
│   ├── ...
├── profiles
│   └── README.txt
├── robots.txt
├── sites
│   ├── ...
├── themes
│   ├── README.txt
│   ├── allofus_experts
│   │   ├── ...
│   ├── bootstrap
│   │   ├── LICENSE.txt
│   └── nnlm2021
│   ├── css
│   │   ├── base
│   │   │   ├── _body.scss
│   │   │   ├── _bootstrap.scss
│   │   │   ├── _button.scss
│   │   │   ├── _color.scss
│   │   │   ├── _drupal.scss
│   │   │   ├── _modal.scss
│   │   │   ├── _unit.scss
│   │   │   ├── base.css
│   │   │   ├── base.css.map
│   │   │   └── base.scss
│   │   ├── component
│   │   │   ├── _card.scss
│   │   │   ├── _carousel-tray.scss
│   │   │   ├── _carousel.scss
│   │   │   ├── _form.scss
│   │   │   ├── _four-icon.scss
│   │   │   ├── _headliner-alt.scss
│   │   │   ├── _headliner.scss
│   │   │   ├── _news.scss
│   │   │   ├── _popular-tray.scss
│   │   │   ├── _splitsville.scss
│   │   │   ├── component.css
│   │   │   ├── component.css.map
│   │   │   └── component.scss
│   │   ├── footer
│   │   │   ├── _call-to-action.scss
│   │   │   ├── _primary.scss
│   │   │   ├── _secondary.scss
│   │   │   ├── _tertiary.scss
│   │   │   ├── footer.css
│   │   │   ├── footer.css.map
│   │   │   └── footer.scss
│   │   ├── header
│   │   │   ├── _alert.scss
│   │   │   ├── _breadcrumb.scss
│   │   │   ├── _identity.scss
│   │   │   ├── _megamenu-gridview.scss
│   │   │   ├── _megamenu-listview.scss
│   │   │   ├── _megamenu.scss
│   │   │   ├── _navigation.scss
│   │   │   ├── _photobanner.scss
│   │   │   ├── _search.scss
│   │   │   ├── _structure.scss
│   │   │   ├── _user.scss
│   │   │   ├── header.css
│   │   │   ├── header.css.map
│   │   │   └── header.scss
│   │   ├── main
│   │   │   ├── _content.scss
│   │   │   ├── _guide.scss
│   │   │   ├── _interior.scss
│   │   │   ├── _secondary.scss
│   │   │   ├── _sidebar.scss
│   │   │   ├── main.css
│   │   │   ├── main.css.map
│   │   │   └── main.scss
│   │   └── view
│   │   ├── _guides.scss
│   │   ├── view.css
│   │   ├── view.css.map
│   │   └── view.scss
│   ├── images
│   │   └── ...
│   ├── js
│   │   └── nnlm-services.js
│   ├── nnlm2021.breakpoints.yml
│   ├── nnlm2021.info.yml
│   ├── nnlm2021.libraries.yml
│   ├── nnlm2021.libraries.yml.backup
│   ├── nnlm2021.theme
│   ├── nnlm2021_screenshot.jpg
│   └── templates
│   ├── ...
├── update.php
└── web.config
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment