├── src ├── vue │ └── .gitkeep ├── js │ ├── tests │ │ └── .gitkeep │ ├── globals.d.ts │ ├── shims-vue.d.ts │ ├── app.ts │ ├── types.ts │ ├── apolloClient.ts │ ├── admin.ts │ ├── scriptLoader.ts │ ├── modules │ │ ├── menu.ts │ │ └── alerts.ts │ └── main.ts ├── public │ ├── img │ │ └── .gitkeep │ └── svgs │ │ └── .gitkeep ├── css │ ├── components │ │ └── .gitkeep │ ├── layouts │ │ └── .gitkeep │ ├── base │ │ ├── README.md │ │ ├── admin.css │ │ ├── social-icons.css │ │ ├── alerts.css │ │ ├── menu.css │ │ ├── structure.css │ │ └── wp-classes.css │ └── main.css ├── sprite │ ├── email.svg │ ├── facebook.svg │ ├── icon-hamburger.svg │ ├── x.svg │ ├── youtube.svg │ ├── linkedin.svg │ ├── vimeo.svg │ ├── icon-close.svg │ ├── pinterest.svg │ ├── instagram.svg │ ├── tiktok.svg │ └── soundcloud.svg └── README.md ├── .npmrc ├── .prettierignore ├── index.php ├── cypress ├── support │ ├── helpers │ │ ├── index.ts │ │ └── accessibility-helper.ts │ ├── vue.ts │ ├── e2e.ts │ ├── baseUrl.ts │ ├── index.d.ts │ ├── checkElementExists.ts │ └── assertions.ts ├── fixtures │ └── example.json ├── tsconfig.json ├── e2e │ ├── alert.spec.ts │ ├── navigation.spec.ts │ └── axe.spec.ts └── plugins │ └── index.ts ├── screenshot.png ├── templates ├── modules │ ├── general-content.php │ └── form.php ├── content-single.php ├── email │ └── email-body.html ├── content-page.php ├── partials │ └── alert.php └── README.md ├── .env ├── .editorconfig ├── stylelint.config.ts ├── vite-env.d.ts ├── prettier.config.cjs ├── CONTRIBUTING.md ├── home.php ├── 404.php ├── style.css ├── .git-ftp-ignore ├── .eslintrc.cjs ├── .gitignore ├── tsconfig.json ├── tailwind.config.ts ├── cypress.config.ts ├── postcss.config.cts ├── page.php ├── single.php ├── inc ├── lib │ ├── FragmentCache.php │ ├── vite.php │ ├── README.md │ ├── shortcodes.php │ ├── assets.php │ ├── helpers.php │ ├── init.php │ ├── AjaxForm.php │ └── clean.php └── acf-json │ ├── group_62586c11ea98d.json │ ├── group_64c9841305284.json │ ├── group_653fdd4a51868.json │ ├── group_621fb69bc75ee.json │ ├── group_653fdbc6d93b5.json │ ├── group_62583ddaa0897.json │ ├── group_653fde8f6b970.json │ ├── group_653fd7cec6a73.json │ └── group_62582b4fb2898.json ├── composer.json ├── footer.php ├── LICENSE.md ├── archive.php ├── header.php ├── phpcs.xml ├── package.json ├── vite.config.ts ├── functions.php ├── .github └── workflows │ └── dev.yml ├── README.md ├── CHANGELOG.md └── composer.lock /src/vue/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/js/tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/public/img/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /src/css/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/css/layouts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/public/svgs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | { 2 | return cy.wrap(Cypress.vueWrapper); 3 | }); 4 | -------------------------------------------------------------------------------- /src/js/shims-vue.d.ts: -------------------------------------------------------------------------------- 1 | declare module '*.vue' { 2 | import Vue from 'vue'; 3 | export default Vue; 4 | } 5 | -------------------------------------------------------------------------------- /src/css/base/README.md: -------------------------------------------------------------------------------- 1 | These are the base styles that make Tofino work. 2 | 3 | You probably don't want to edit them. 4 | -------------------------------------------------------------------------------- /templates/modules/general-content.php: -------------------------------------------------------------------------------- 1 |
|
6 | %message% 7 | %form_content% 8 | 9 | %ip_address% 10 | %referrer% 11 | |
12 |