Created
April 20, 2022 15:15
-
-
Save brianzelip/9f8b2739557e2849ae7ef8688b87283d to your computer and use it in GitHub Desktop.
Revisions
-
brianzelip created this gist
Apr 20, 2022 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,132 @@ . ├── 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