blur-admin/src/app/pages/ui/tabs/mainTabs.html

65 lines
3.0 KiB
HTML

<uib-tabset active="$tabSetStatus.activeTab">
<uib-tab heading="Start">
<p>
Take up one idea. Make that one idea your life--think of it, dream of it, live on that idea. Let the brain,
muscles, nerves, every part of your body, be full of that idea, and just leave every other idea alone. This is the
way to success.
</p>
<p>
People who succeed have momentum. The more they succeed, the more they want to succeed, and the more they find a
way to succeed. Similarly, when someone is failing, the tendency is to get on a downward spiral that can even
become a self-fulfilling prophecy.
</p>
<div class="text-center">
<div class="kameleon-icon with-round-bg primary inline-icon"><img ng-src="{{::( 'Shop' | kameleonImg )}}"></div>
<div class="kameleon-icon with-round-bg primary inline-icon"><img ng-src="{{::( 'Programming' | kameleonImg )}}"></div>
<div class="kameleon-icon with-round-bg primary inline-icon"><img ng-src="{{::( 'Dna' | kameleonImg )}}"></div>
</div>
<p>
The reason most people never reach their goals is that they don't define them, or ever seriously consider them as
believable or achievable. Winners can tell you where they are going, what they plan to do along the way, and who
will be sharing the adventure with them.
</p>
</uib-tab>
<uib-tab heading="Getting Done">
<p>
You can't connect the dots looking forward; you can only connect them looking backwards. So you have to trust that
the dots will somehow connect in your future. You have to trust in something--your gut, destiny, life, karma,
whatever. This approach has never let me down, and it has made all the difference in my life.
</p>
<p>
The reason most people never reach their goals is that they don't define them, or ever seriously consider them as
believable or achievable. Winners can tell you where they are going, what they plan to do along the way, and who
will be sharing the adventure with them.
</p>
</uib-tab>
<uib-tab ng-init="$dropdownTabActive = 1" class="with-dropdown">
<uib-tab-heading uib-dropdown>
<a uib-dropdown-toggle ng-click="$event.stopPropagation()">
Dropdown tab <i class="caret"></i>
</a>
<ul class="dropdown-menu" uib-dropdown-menu>
<li><a ng-click="$dropdownTabActive = 1; $tabSetStatus.activeTab = 3">Tab 1</a></li>
<li><a ng-click="$dropdownTabActive = 2; $tabSetStatus.activeTab = 3">Tab 2</a></li>
</ul>
</uib-tab-heading>
<div ng-show="$dropdownTabActive == 1">
<p>
Success is ... knowing your purpose in life, growing to reach your maximum potential, and sowing seeds that
benefit others.
</p>
<p>Failure is the condiment that gives success its flavor.</p>
</div>
<div ng-show="$dropdownTabActive == 2">
<p class="text-center">
<button class="btn btn-danger">I'm just a dummy button</button>
</p>
</div>
</uib-tab>
</uib-tabset>