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 characters
| summary: Remove unused EC2 key pairs | |
| workflow-loop: | |
| - set: prod | |
| parameters: | |
| - aws-connection: aws-prod-cac | |
| awsRegion: ca-central-1 | |
| - aws-connection: aws-prod-euc | |
| awsRegion: eu-central-1 | |
| - aws-connection: aws-prod-euw1 |
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 characters
| // Initialize the world | |
| var world = anima.js(); | |
| // Define items to animate | |
| // Signs | |
| var perf = world.add(document.querySelector(".performance-sign .sign")); | |
| var perflight = world.add(document.querySelector(".performance-sign img.sign-on")); | |
| var costs = world.add(document.querySelector(".costs-sign .sign")); |
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 characters
| .player | |
| button.play data-toggle="off" play | |
| button.repeat data-toggle="on" repeat | |
| .timeline | |
| .load_progress | |
| .play_progress | |
| .playhead | |
| .date | |
| span.start | |
| i.icon.icon-16.calendar |
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 characters
| SLIM | |
| section.content | |
| #hero | |
| .col1 | |
| .ad.dark | |
| == markdown I18n.t(:welcome_ad) | |
| img.bg src="/images/homepage/bg_ad-big-charts.png" | |
| EN.YML |
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 characters
| require "redcarpet" | |
| Object.send(:remove_const, :RedcarpetCompat) if defined? ::RedcarpetCompat | |
| set :markdown_engine, :redcarpet | |
| set :redcarpet, :autolink => true, :no_intra_emphasis => true, :fenced_code_blocks => true, :strikethrough => true, :smartypants => true |
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 characters
| <div class="tbl-box" id="subscribers-data"> | |
| <div class="tbl-header"> | |
| <div class="inner"> | |
| <table> | |
| <tbody> | |
| <tr> | |
| <td rel="Name" class="sorter"> Subscriber </td> | |
| <td rel="DateStarted" class="shortCol sorter"> Started</td> | |
| <td rel="NextRenewal" class="shortCol sorter"> Renewal</td> | |
| <td rel="SubscriptionPrice" class="shortCol sorter"> Price </td> |
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 characters
| <script type="text/javascript"> | |
| $(document).bind("mobileinit", function(){ | |
| $.mobile.page.prototype.options.degradeInputs.date = 'text'; | |
| $.mobile.minScrollBack = 'infinity'; | |
| }); | |
| </script> |
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 characters
| # Helpers | |
| helpers do | |
| def some_helper(*args) | |
| "Helping" | |
| end | |
| end | |
| # Build-specific configuration | |
| configure :build do |
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 characters
| {block:IfShowTwitterFeed} | |
| <script type="text/javascript"> | |
| $(function() { | |
| $("#tweets").tweet({ | |
| username: "{text:Twitter Username}", | |
| template: "{join}{text}", | |
| count: 1, | |
| loading_text: "Loading..." | |
| }); | |
| }); |