ember-tribe 2.6.2 → 2.6.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,5 @@
1
+ <section class="flame-bg d-flex align-items-center justify-content-center">
2
+ <div class="py-6 container px-0 text-center text-dark">
3
+ <img src="/assets/img/flame.png" width="200">
4
+ </div>
5
+ </section>
@@ -0,0 +1,2 @@
1
+ {{page-title "<%= classifiedPackageName %>"}}
2
+ {{outlet}}
@@ -0,0 +1,7 @@
1
+ {{!-- Remove the WelcomeFlame component and write your HTML code here --}}
2
+
3
+ <WelcomeFlame />
4
+
5
+ {{!-- / --}}
6
+
7
+ {{outlet}}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ember-tribe",
3
- "version": "2.6.2",
3
+ "version": "2.6.3",
4
4
  "description": "The default blueprint for using Tribe API and Junction within EmberJS.",
5
5
  "keywords": [
6
6
  "ember-addon"
@@ -1,11 +0,0 @@
1
- import Component from '@glimmer/component';
2
-
3
- export default class WelcomeFlameComponent extends Component {
4
- <template>
5
- <section class="flame-bg d-flex align-items-center justify-content-center">
6
- <div class="py-6 container px-0 text-center text-dark">
7
- <img src="/assets/img/flame.png" width="200">
8
- </div>
9
- </section>
10
- </template>
11
- }
@@ -1,6 +0,0 @@
1
- import { pageTitle } from 'ember-page-title';
2
-
3
- <template>
4
- {{pageTitle "<%= classifiedPackageName %>"}}
5
- {{outlet}}
6
- </template>
@@ -1,11 +0,0 @@
1
- import WelcomeFlame from '../components/welcome-flame';
2
-
3
- <template>
4
- {{! Remove the WelcomeFlame component and write your HTML code here }}
5
-
6
- <WelcomeFlame />
7
-
8
- {{! / }}
9
-
10
- {{outlet}}
11
- </template>