commit stringlengths 40 40 | old_file stringlengths 7 120 | new_file stringlengths 7 120 | old_contents stringlengths 0 1.87k | new_contents stringlengths 33 2.34k | subject stringlengths 20 137 | message stringlengths 21 1.97k | lang stringclasses 1
value | license stringclasses 9
values | repos stringlengths 10 20k |
|---|---|---|---|---|---|---|---|---|---|
7b211618de888c543a4e811388d3cd164947e205 | app/templates/stop-results.hbs | app/templates/stop-results.hbs | <div class="action-banner action-banner--search">
<div class="search-bar">
<a href="#" class="bd-button">
<i class="bd-icon bd-icon--search"></i>
</a>
<input type="text" title="search_input" placeholder="Search" class="search-bar__text-field">
</div>
</div>
<div class="list">
<h2 class="light">
<i class="bd-icon bd-icon--pin"></i>
Favorite Stops
</h2>
<div class="list-item">
<h1 class="list-item__title">7th + Walnut</h1>
<div class="list-item__details">
<span class="tag tag--blue"> 11 </span>
<span class="tag tag--green"> 12x </span>
<span class="tag tag--purple"> 17 </span>
<span class="tag tag--red"> 74x </span>
<span class="list-item__distance">
<i class="bd-icon bd-icon--walk"></i>
0.5mi
</span>
</div>
</div>
</div> | <div class="action-banner action-banner--search">
<div class="search-bar">
<a href="#" class="bd-button">
<i class="bd-icon bd-icon--search"></i>
</a>
<input type="text" title="search_input" placeholder="Search" class="search-bar__text-field">
</div>
</div>
<div class="list">
<h2 class="light">
<i class="bd-icon bd-icon--heart"></i>
Favorite Stops
</h2>
<div class="list-item">
<h1 class="list-item__title">7th + Walnut</h1>
<div class="list-item__details">
<span class="tag tag--blue"> 11 </span>
<span class="tag tag--green"> 12x </span>
<span class="tag tag--purple"> 17 </span>
<span class="tag tag--red"> 74x </span>
<span class="list-item__distance">
<i class="bd-icon bd-icon--walk"></i>
0.5mi
</span>
</div>
</div>
</div> | Switch icon in list header | Switch icon in list header
| Handlebars | mit | bus-detective/web-client,bus-detective/web-client |
2046cd8b15ef8cc3547168a467552a7298f06394 | app/templates/serviceOverview.handlebars | app/templates/serviceOverview.handlebars | <div class="view-container">
{{#unless subordinate}}
<div class="view-content unit-scaling">
<div class="units-input">
<div class="unit-label">of</div>
<input type="text" class="num-units-control" value="{{unit_count}}"/>
<span class="text-in-input">Units</span>
</div>
<div class="current-unit-num" data-bind="unit_count"></div>
<div class="unit-constraints-confirm closed"></div>
<!-- without setting the height of the svg element here it defaults
to 100% of the available space causing an undesirable flash of
incorrectly calculated height -->
<svg class="statusbar" data-bind="aggregated_status"></svg>
</div>
<ul class="overview-unit-list" data-bind="units">
</ul>
{{/unless}}
<div class="overview-footer-item expose {{#if pending}}hidden{{/if}}">
<div class="toggle single-line">
<label for="expose-toggle">Expose this service?</label>
<div class="toggle-switch" data-bind="exposed">
<input type="checkbox"
name="expose-toggle"
class="expose-toggle hidden"
data-skipconflictux=true
id="expose-toggle">
<label for="expose-toggle" class="light">
<div class="handle"></div>
</label>
</div>
</div>
</div>
</div>
| <div class="view-container">
{{#unless subordinate}}
<div class="view-content unit-scaling">
<div class="units-input">
<div class="unit-label">of</div>
<input type="text" class="num-units-control" value="{{unit_count}}"/>
<span class="text-in-input">Units</span>
</div>
<div class="current-unit-num" data-bind="unit_count"></div>
<div class="unit-constraints-confirm closed"></div>
</div>
<div class="view-content">
<!-- without setting the height of the svg element here it defaults
to 100% of the available space causing an undesirable flash of
incorrectly calculated height -->
<svg class="statusbar" data-bind="aggregated_status"></svg>
</div>
<ul class="overview-unit-list" data-bind="units">
</ul>
{{/unless}}
<div class="overview-footer-item expose {{#if pending}}hidden{{/if}}">
<div class="toggle single-line">
<label for="expose-toggle">Expose this service?</label>
<div class="toggle-switch" data-bind="exposed">
<input type="checkbox"
name="expose-toggle"
class="expose-toggle hidden"
data-skipconflictux=true
id="expose-toggle">
<label for="expose-toggle" class="light">
<div class="handle"></div>
</label>
</div>
</div>
</div>
</div>
| Move SVG status bar out of hidden div. | Move SVG status bar out of hidden div.
| Handlebars | agpl-3.0 | bac/juju-gui,bac/juju-gui,jrwren/juju-gui,bac/juju-gui,jrwren/juju-gui,mitechie/juju-gui,mitechie/juju-gui,mitechie/juju-gui,jrwren/juju-gui,mitechie/juju-gui,bac/juju-gui,jrwren/juju-gui |
a7822c698e3d4728f0bd4693d57d8bce3364787b | app/components/canvas-title-byline/template.hbs | app/components/canvas-title-byline/template.hbs | <div>
<span local-class="byline-toggle" onclick={{action (toggle 'showInsertedAt' this)}}>
{{#if showInsertedAt}}
<span>Created <strong>{{moment-from-now canvas.insertedAt}}</strong>
by <strong>{{canvas.creator.name}}</strong></span>
{{else}}
<span>Last updated <strong>{{moment-from-now canvas.updatedAt}}</strong></span>
{{/if}}
</span>
</div>
<div class="channel-list">
{{canvas-channel-list
channelIds=canvas.slackChannelIds
channels=canvas.team.channels
static=static
updateCanvasChannels=updateCanvasChannels}}
</div>
| <div>
<span local-class="byline-toggle" onclick={{action (toggle 'showInsertedAt' this)}}>
{{#if showInsertedAt}}
<span>Created <strong>{{moment-from-now canvas.insertedAt}}</strong>
by <strong>{{canvas.creator.name}}</strong></span>
{{else}}
<span>Last edited <strong>{{moment-from-now canvas.editedAt}}</strong></span>
{{/if}}
</span>
</div>
<div class="channel-list">
{{canvas-channel-list
channelIds=canvas.slackChannelIds
channels=canvas.team.channels
static=static
updateCanvasChannels=updateCanvasChannels}}
</div>
| Use editedAt for title byline | Use editedAt for title byline
| Handlebars | apache-2.0 | usecanvas/web-v2,usecanvas/web-v2,usecanvas/web-v2 |
5b2caf6bed7846646290539df28e4cec2ef90753 | app/templates/components/experiment-summary.hbs | app/templates/components/experiment-summary.hbs | <div class="col-md-12 well foo">
<div class="row table-block">
<div class="col-xs-8">
<strong>{{experiment.title}}</strong>
</div>
<div class="col-xs-2 text-center">
<strong>{{moment-format experiment.beginDate 'MMMM D, YYYY'}}</strong>
</div>
<div class="col-xs-2 text-center">
<strong>{{moment-format experiment.endDate 'MMMM D, YYYY'}}</strong>
</div>
</div>
<div class="row table-block">
<div class="col-xs-12">
{{experiment.description}}
</div>
</div>
<div class="row table-block">
<div class="col-xs-2">
<strong>Status: </strong>{{experiment.state}}
</div>
<div class="col-xs-3">
<strong>Last Edited: </strong>{{moment-format experiment.lastEdited 'M/D/YYYY'}}
</div>
<div class="col-xs-2 pull-right">
{{#link-to "experiments.info" experiment.id class="btn btn-default" }}Details{{/link-to}}
</div>
</div>
</div>
| <div class="col-md-12 well foo">
<div class="row table-block">
<div class="col-xs-8">
<strong>{{experiment.title}}</strong>
</div>
<div class="col-xs-2 text-center">
{{#if experiment.beginDate}}
<strong>{{moment-format experiment.beginDate 'MMMM D, YYYY'}}</strong>
{{else}}
n/a
{{/if}}
</div>
<div class="col-xs-2 text-center">
{{#if experiment.endDate}}
<strong>{{moment-format experiment.endDate 'MMMM D, YYYY'}}</strong>
{{else}}
n/a
{{/if}}
</div>
</div>
<div class="row table-block">
<div class="col-xs-12">
{{experiment.description}}
</div>
</div>
<div class="row table-block">
<div class="col-xs-2">
<strong>Status: </strong>{{experiment.state}}
</div>
<div class="col-xs-3">
<strong>Last Edited: </strong>{{moment-format experiment.lastEdited 'M/D/YYYY'}}
</div>
<div class="col-xs-2 pull-right">
{{#link-to "experiments.info" experiment.id class="btn btn-default" }}Details{{/link-to}}
</div>
</div>
</div>
| Add placeholder if beginDate/endDate are null | Add placeholder if beginDate/endDate are null
| Handlebars | apache-2.0 | abought/experimenter,abought/experimenter |
ea3cb941d4f37e4baf37ecd1af82b4cc3e2c2665 | static/templates/admin_user_group_list.hbs | static/templates/admin_user_group_list.hbs | {{#with user_group}}
<div class="user-group white-box" id="{{id}}">
<div class="alert user-group-status"></div>
<h4>
<span class="name" data-placeholder="{{t 'Name' }}" contenteditable="true" spellcheck="false">{{name}}</span>
<span class="spacer">—</span>
<span class="description" data-placeholder="{{t 'Description' }}" contenteditable="true">{{description}}</span>
<button class="button save-status sea-green small">
<img class="checkmark" src="/static/images/checkbox-green.svg" />
{{t 'Saved' }}
</button>
<button class="button save-status btn-danger small">
{{t 'Discard changes' }}
</button>
<button class="button rounded small delete btn-danger">
{{t 'Delete' }}
</button>
</h4>
<p class="subscribers">{{t 'Subscribers' }}</p>
<div class="pill-container" data-group-pills="{{id}}">
<div class="input" contenteditable="true" data-placeholder="{{t 'Add member...' }}"></div>
</div>
<p class="save-instructions">
{{t "Click outside the input box to save. We'll automatically notify anyone that was added or removed."}}
</p>
</div>
{{/with}}
| {{#with user_group}}
<div class="user-group white-box" id="{{id}}">
<div class="alert user-group-status"></div>
<h4>
<span class="name" data-placeholder="{{t 'Name' }}" contenteditable="true" spellcheck="false">{{name}}</span>
<span class="spacer">—</span>
<span class="description" data-placeholder="{{t 'Description' }}" contenteditable="true">{{description}}</span>
<button class="button save-status sea-green small">
<img class="checkmark" src="/static/images/checkbox-green.svg" />
{{t 'Saved' }}
</button>
<button class="button save-status btn-danger small">
<i class="fa fa-undo" aria-label="{{t 'Delete' }}" title="{{t 'Delete' }}"></i>
</button>
<button class="button rounded small delete btn-danger">
<i class="fa fa-trash-o" aria-label="{{t 'Delete' }}" title="{{t 'Delete' }}"></i>
</button>
</h4>
<p class="subscribers">{{t 'Subscribers' }}</p>
<div class="pill-container" data-group-pills="{{id}}">
<div class="input" contenteditable="true" data-placeholder="{{t 'Add member...' }}"></div>
</div>
<p class="save-instructions">
{{t "Click outside the input box to save. We'll automatically notify anyone that was added or removed."}}
</p>
</div>
{{/with}}
| Replace user groups delete button with fa-trash-o. | settings: Replace user groups delete button with fa-trash-o.
This makes this settings page a bit more consistent with the rest of
the site.
| Handlebars | apache-2.0 | andersk/zulip,zulip/zulip,zulip/zulip,zulip/zulip,kou/zulip,hackerkid/zulip,eeshangarg/zulip,eeshangarg/zulip,hackerkid/zulip,hackerkid/zulip,hackerkid/zulip,punchagan/zulip,andersk/zulip,eeshangarg/zulip,punchagan/zulip,zulip/zulip,rht/zulip,punchagan/zulip,rht/zulip,andersk/zulip,andersk/zulip,rht/zulip,andersk/zulip,kou/zulip,eeshangarg/zulip,punchagan/zulip,punchagan/zulip,rht/zulip,rht/zulip,kou/zulip,kou/zulip,zulip/zulip,kou/zulip,andersk/zulip,hackerkid/zulip,punchagan/zulip,zulip/zulip,hackerkid/zulip,zulip/zulip,eeshangarg/zulip,kou/zulip,hackerkid/zulip,rht/zulip,eeshangarg/zulip,rht/zulip,eeshangarg/zulip,andersk/zulip,punchagan/zulip,kou/zulip |
242984e9c6c5e73e9eaf2775b116d648b3568d25 | apps/store/themes/store/partials/footer.hbs | apps/store/themes/store/partials/footer.hbs | <footer class="footer">
<p>© 2014 WSO2 Inc. All Rights Reserved</p>
</footer>
| <footer class="footer">
<p>© 2015 WSO2 Inc. All Rights Reserved</p>
</footer>
| Update copyright year to 2015 | Update copyright year to 2015
| Handlebars | apache-2.0 | madawas/carbon-store,daneshk/carbon-store,sameerak/carbon-store,cnapagoda/carbon-store,charithag/carbon-store,sameerak/carbon-store,udarakr/carbon-store,jeradrutnam/carbon-store,wso2/carbon-store,splinter/carbon-store,ayshsandu/carbon-store,madawas/carbon-store,sameerak/carbon-store,charithag/carbon-store,isuruwan/carbon-store,prasa7/carbon-store,isuruwan/carbon-store,charithag/carbon-store,daneshk/carbon-store,thushara35/carbon-store,Rajith90/carbon-store,splinter/carbon-store,ayshsandu/carbon-store,cnapagoda/carbon-store,udarakr/carbon-store,cnapagoda/carbon-store,madawas/carbon-store,wso2/carbon-store,jeradrutnam/carbon-store,thushara35/carbon-store,Rajith90/carbon-store,jeradrutnam/carbon-store,daneshk/carbon-store,isuruwan/carbon-store,prasa7/carbon-store,udarakr/carbon-store,thushara35/carbon-store,prasa7/carbon-store,splinter/carbon-store,Rajith90/carbon-store,wso2/carbon-store,ayshsandu/carbon-store |
4022c346cbdfe26440c971ce9e1468bc740a194f | default.hbs | default.hbs | <!DOCTYPE html>
<head>
{{! Document Settings }}
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
{{! Page Meta }}
<title>{{meta_title}}</title>
<meta name="description" content="{{meta_description}}" />
<meta name="HandheldFriendly" content="True" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="{{asset "favicon.ico"}}">
{{! Styles'n'Scripts }}
<link rel="stylesheet" type="text/css" href="{{asset "css/style.min.css"}}" />
{{! Ghost outputs important style and meta data with this tag }}
{{ghost_head}}
</head>
<body class="{{body_class}}">
{{! Everything else gets inserted here }}
{{{body}}}
<footer class="site-footer clearfix">
<section class="copyright"><a href="{{@blog.url}}">{{@blog.title}}</a> © {{date format="YYYY"}}</section>
</footer>
{{! The main JavaScript file for Spooky SPA }}
<script type="text/javascript" src="{{asset "js/script.min.js"}}"></script>
{{> google-analytics}}
</body>
</html>
| <!DOCTYPE html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
{{! Page Meta }}
<title>{{meta_title}}</title>
<meta name="description" content="{{meta_description}}" />
<meta name="HandheldFriendly" content="True" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="{{asset "favicon.ico"}}">
{{! Ghost outputs important style and meta data with this tag }}
{{ghost_head}}
</head>
<body class="{{body_class}}">
{{! Everything else gets inserted here }}
{{{body}}}
<link rel="stylesheet" type="text/css" href="{{asset "css/style.css"}}" />
<footer class="site-footer clearfix">
<section class="copyright"><a href="{{@blog.url}}">{{@blog.title}}</a> © {{date format="YYYY"}}</section>
</footer>
{{! The main JavaScript file for Spooky SPA }}
<script type="text/javascript" src="{{asset "js/script.js"}}"></script>
{{> google-analytics}}
</body>
</html>
| Rearrange stylesheet include to reduce scroll blocking on page load | Rearrange stylesheet include to reduce scroll blocking on page load
| Handlebars | mit | PabloSichert/Spooky-SPA |
253dd2e2e157bb8aef8a3b96491ce28e3c16ad21 | app/templates/admin/groups/index.hbs | app/templates/admin/groups/index.hbs | <section>
<ol class='breadcrumb'>
<li>{{#link-to 'admin'}}Admin{{/link-to}}</li>
<li class='active'>Groups</li>
</ol>
</section>
<section>
<div>
<table class='table'>
<thead>
<tr>
<th>Name</th>
</tr>
</thead>
<tbody>
{{#each model as |group|}}
<tr>
<td>{{#link-to 'admin.groups.group' group}}{{group.name}}{{/link-to}}</td>
</tr>
{{/each}}
</tbody>
</table>
</div>
</section>
| <section>
<ol class='breadcrumb'>
<li>{{#link-to 'admin'}}Admin{{/link-to}}</li>
<li class='active'>Groups</li>
</ol>
</section>
<section>
<div>
<table class='table'>
<thead>
<tr>
<th>Name</th>
<th>Kind</th>
</tr>
</thead>
<tbody>
{{#each model as |group|}}
<tr>
<td>{{#link-to 'admin.groups.group' group}}{{group.name}}{{/link-to}}</td>
<td>{{group.kind}}</td>
</tr>
{{/each}}
</tbody>
</table>
</div>
</section>
| Add kind to group list interface | Add kind to group list interface
| Handlebars | bsd-2-clause | barberscore/barberscore-web,barberscore/barberscore-web,barberscore/barberscore-web |
d0f0a12f2dc6ad56c34cf25fc3eb61e9ee8cb681 | gui/app/pods/folder/block/template.hbs | gui/app/pods/folder/block/template.hbs | {{#layout/top-bar}}
<li class="item">
{{#link-to "folder.index" model.folder.id model.folder.slug class="link"}}
{{model.folder.name}}
{{/link-to}}
</li>
<li class="item">
{{#link-to "document.index" model.folder.id model.folder.slug model.document.id model.document.slug class="link selected"}}
{{model.document.name}}
{{/link-to}}
</li>
{{/layout/top-bar}}
{{document/block-editor document=model.document folder=model.folder block=model.block onCancel=(action "onCancel") onAction=(action "onAction")}}
{{#layout/bottom-bar}}
{{/layout/bottom-bar}} | {{#layout/master-sidebar}}
{{ui/ui-spacer size=300}}
<div class="section">
{{#link-to "folder.settings"}}
{{ui/ui-button color=constants.Color.Yellow light=true icon=constants.Icon.ArrowLeft label="Space Settings"}}
{{/link-to}}
</div>
{{/layout/master-sidebar}}
{{#layout/master-content}}
{{layout/logo-heading
title="Content Blocks"
desc="Content blocks provide re-usable content that can be inserted into any document"
icon=constants.Icon.Integrations}}
{{document/block-editor document=model.document folder=model.folder block=model.block
onCancel=(action "onCancel") onAction=(action "onAction")}}
{{/layout/master-content}}
| Use new UI framework for content block editor | Use new UI framework for content block editor
| Handlebars | agpl-3.0 | documize/community,documize/community,documize/community,documize/community |
7d34ea8d1814c9bedff06313b66a5a81503ec2ab | templates/user/billing-confirm-cancel.hbs | templates/user/billing-confirm-cancel.hbs | <form method="POST" action="/org/{{subscription.npm_org}}">
{{#if subscription.privateModules}}
<p>Are you sure you want to cancel your private modules subscription?</p>
{{else}}
<p>Are you sure you want to cancel the subscription for the organization <strong>@{{subscription.npm_org}}</strong>?<</p>
{{/if}}
{{> form_security}}
<input type="hidden" name="updateType" value="deleteOrg">
<a href="/settings/billing" class="button btn-inline">No, go back</a>
<button type="submit" class="button btn-inline">Yes, cancel this subscription</button>
</form>
| <form method="POST" action="/org/{{subscription.npm_org}}">
{{#if subscription.privateModules}}
<p>Are you sure you want to cancel your private modules subscription?</p>
{{else}}
<p>Are you sure you want to cancel the subscription for the organization <strong>@{{subscription.npm_org}}</strong>?<</p>
{{/if}}
{{> form_security}}
<input type="hidden" name="updateType" value="deleteOrg">
<button type="submit" class="button btn-inline">Yes, cancel this subscription</button>
<a href="/settings/billing" class="button btn-inline btn-secondary">No, go back</a>
</form>
| Make the no button a secondary | Make the no button a secondary
| Handlebars | isc | nexdrew/newww,watilde/newww,nexdrew/newww,kemitchell/newww,watilde/newww,aredridel/newww,nexdrew/newww,watilde/newww,aredridel/newww,aredridel/newww,kemitchell/newww,kemitchell/newww |
67771f80d080b9227e8ddfe16b08a8f7dbe01f88 | static/templates/draft_table_body.hbs | static/templates/draft_table_body.hbs | <div id="draft_overlay" class="overlay new-style" data-overlay="drafts">
<div class="flex overlay-content">
<div class="drafts-container modal-bg">
<div class="drafts-header">
<h1>{{t 'Drafts' }}</h1>
<div class="exit">
<span class="exit-sign">×</span>
</div>
<div class="removed-drafts">
{{#tr}}Drafts are not synced to other devices and browsers.{{/tr}}
<br />
{{#tr}}Drafts older than <strong>{draft_lifetime}</strong> days are automatically removed.{{/tr}}
<br />
{{t "Pro tip: You can use 'd' to open your drafts."}}
</div>
</div>
<div class="drafts-list">
<div class="no-drafts">
{{t 'No drafts.'}}
</div>
{{#each drafts}}
{{> draft}}
{{/each}}
</div>
</div>
</div>
</div>
| <div id="draft_overlay" class="overlay new-style" data-overlay="drafts">
<div class="flex overlay-content">
<div class="drafts-container modal-bg">
<div class="drafts-header">
<h1>{{t 'Drafts' }}</h1>
<div class="exit">
<span class="exit-sign">×</span>
</div>
<div class="removed-drafts">
{{#tr}}Drafts are not synced to other devices and browsers.{{/tr}}
<br />
{{#tr}}Drafts older than <strong>{draft_lifetime}</strong> days are automatically removed.{{/tr}}
</div>
</div>
<div class="drafts-list">
<div class="no-drafts">
{{t 'No drafts.'}}
</div>
{{#each drafts}}
{{> draft}}
{{/each}}
</div>
</div>
</div>
</div>
| Remove 'pro tip' from draft modal. | drafts: Remove 'pro tip' from draft modal.
This keyboard shortcut advertisement dates from the original version
of the overlay, before we advertised the shortcut in other ways.
Discussion here:
https://github.com/zulip/zulip/pull/22127#discussion_r882270506
| Handlebars | apache-2.0 | zulip/zulip,andersk/zulip,andersk/zulip,zulip/zulip,andersk/zulip,zulip/zulip,rht/zulip,zulip/zulip,zulip/zulip,zulip/zulip,andersk/zulip,rht/zulip,rht/zulip,andersk/zulip,andersk/zulip,rht/zulip,rht/zulip,zulip/zulip,rht/zulip,rht/zulip,andersk/zulip |
7d96b8cc139b08f9d7bcaaad5ecea94931f7a0c2 | share/spice/keybase/content.handlebars | share/spice/keybase/content.handlebars | <div class="keybase--basic">
<div class="keybase--image--wrap">
{{#if pictures.primary.url}}
<img src="{{imageProxy pictures.primary.url}}" class="circle keybase--image">
{{else}}
<img src="{{imageProxy 'https://keybase.io/images/no_photo.png'}}" class="circle keybase--image">
{{/if}}
</div>
<div class="keybase--misc">
<div>{{profile.full_name}}</div>
<div class="keybase--more">
{{#if profile.location}}
<span class="keybase--user">{{profile.location}}</span>
{{/if}}
</div>
{{#if public_keys.primary.key_fingerprint}}
<span class="keybase--user">
<a href="https://keybase.io/{{basics.username}}/key.asc">{{keybase_key_fingerprint public_keys.primary.key_fingerprint}}</a>
</span>
{{/if}}
</div>
</div>
</div>
{{#if profile.bio}}
<div class="keybase--description">{{profile.bio}}</div>
{{/if}}
| <div class="keybase--basic">
<div class="keybase--image--wrap">
{{#if pictures.primary.url}}
<img src="{{imageProxy pictures.primary.url}}" class="circle keybase--image">
{{else}}
<img src="{{imageProxy 'https://keybase.io/images/no_photo.png'}}" class="circle keybase--image">
{{/if}}
</div>
<div class="keybase--misc">
<h1 class="zci__header">{{profile.full_name}}</h1>
<div class="keybase--more">
{{#if profile.location}}
<span class="keybase--user">{{profile.location}}</span>
{{/if}}
</div>
{{#if public_keys.primary.key_fingerprint}}
<span class="keybase--user">
<a href="https://keybase.io/{{basics.username}}/key.asc">{{keybase_key_fingerprint public_keys.primary.key_fingerprint}}</a>
</span>
{{/if}}
</div>
</div>
{{#if profile.bio}}
<div class="zci__content">{{profile.bio}}</div>
{{/if}}
| Fix keybase.io layout on mobile | Fix keybase.io layout on mobile
| Handlebars | apache-2.0 | ppant/zeroclickinfo-spice,levaly/zeroclickinfo-spice,soleo/zeroclickinfo-spice,echosa/zeroclickinfo-spice,lernae/zeroclickinfo-spice,sagarhani/zeroclickinfo-spice,lw7360/zeroclickinfo-spice,AcriCAA/zeroclickinfo-spice,navjotahuja92/zeroclickinfo-spice,tagawa/zeroclickinfo-spice,rubinovitz/zeroclickinfo-spice,rmad17/zeroclickinfo-spice,toenu23/zeroclickinfo-spice,mr-karan/zeroclickinfo-spice,tagawa/zeroclickinfo-spice,bigcurl/zeroclickinfo-spice,kevintab95/zeroclickinfo-spice,deserted/zeroclickinfo-spice,ColasBroux/zeroclickinfo-spice,sagarhani/zeroclickinfo-spice,ScreapDK/zeroclickinfo-spice,cylgom/zeroclickinfo-spice,iambibhas/zeroclickinfo-spice,bdjnk/zeroclickinfo-spice,mr-karan/zeroclickinfo-spice,ColasBroux/zeroclickinfo-spice,kevintab95/zeroclickinfo-spice,xaviervalarino/zeroclickinfo-spice,Kakkoroid/zeroclickinfo-spice,iambibhas/zeroclickinfo-spice,Kr1tya3/zeroclickinfo-spice,levaly/zeroclickinfo-spice,loganom/zeroclickinfo-spice,whalenrp/zeroclickinfo-spice,digit4lfa1l/zeroclickinfo-spice,lernae/zeroclickinfo-spice,xaviervalarino/zeroclickinfo-spice,imwally/zeroclickinfo-spice,whalenrp/zeroclickinfo-spice,Dwaligon/zeroclickinfo-spice,bibliotechy/zeroclickinfo-spice,imwally/zeroclickinfo-spice,GrandpaCardigan/zeroclickinfo-spice,MoriTanosuke/zeroclickinfo-spice,ScreapDK/zeroclickinfo-spice,Faiz7412/zeroclickinfo-spice,timeanddate/zeroclickinfo-spice,Faiz7412/zeroclickinfo-spice,TomBebbington/zeroclickinfo-spice,lernae/zeroclickinfo-spice,dheeraj143/zeroclickinfo-spice,stennie/zeroclickinfo-spice,gautamkrishnar/zeroclickinfo-spice,sagarhani/zeroclickinfo-spice,marianosimone/zeroclickinfo-spice,claytonspinner/zeroclickinfo-spice,iambibhas/zeroclickinfo-spice,gautamkrishnar/zeroclickinfo-spice,deserted/zeroclickinfo-spice,dogomedia/zeroclickinfo-spice,levaly/zeroclickinfo-spice,kevintab95/zeroclickinfo-spice,jyounker/zeroclickinfo-spice,jyounker/zeroclickinfo-spice,sevki/zeroclickinfo-spice,P71/zeroclickinfo-spice,lw7360/zeroclickinfo-spice,ScreapDK/zeroclickinfo-spice,imwally/zeroclickinfo-spice,levaly/zeroclickinfo-spice,mayo/zeroclickinfo-spice,dogomedia/zeroclickinfo-spice,Kr1tya3/zeroclickinfo-spice,mohan08p/zeroclickinfo-spice,marianosimone/zeroclickinfo-spice,echosa/zeroclickinfo-spice,bigcurl/zeroclickinfo-spice,dheeraj143/zeroclickinfo-spice,navjotahuja92/zeroclickinfo-spice,whalenrp/zeroclickinfo-spice,bibliotechy/zeroclickinfo-spice,whalenrp/zeroclickinfo-spice,Kr1tya3/zeroclickinfo-spice,navjotahuja92/zeroclickinfo-spice,hshackathons/zeroclickinfo-spice,cylgom/zeroclickinfo-spice,navjotahuja92/zeroclickinfo-spice,dheeraj143/zeroclickinfo-spice,dachinzo/zeroclickinfo-spice,lernae/zeroclickinfo-spice,rubinovitz/zeroclickinfo-spice,ScreapDK/zeroclickinfo-spice,TomBebbington/zeroclickinfo-spice,deserted/zeroclickinfo-spice,brianrisk/zeroclickinfo-spice,iambibhas/zeroclickinfo-spice,imwally/zeroclickinfo-spice,xaviervalarino/zeroclickinfo-spice,evejweinberg/zeroclickinfo-spice,Dwaligon/zeroclickinfo-spice,lerna/zeroclickinfo-spice,toenu23/zeroclickinfo-spice,lw7360/zeroclickinfo-spice,ppant/zeroclickinfo-spice,sevki/zeroclickinfo-spice,whalenrp/zeroclickinfo-spice,rmad17/zeroclickinfo-spice,deserted/zeroclickinfo-spice,shyamalschandra/zeroclickinfo-spice,stevenmg/zeroclickinfo-spice,lernae/zeroclickinfo-spice,tagawa/zeroclickinfo-spice,toenu23/zeroclickinfo-spice,dachinzo/zeroclickinfo-spice,Retrobottega/zeroclickinfo-spice,stennie/zeroclickinfo-spice,mohan08p/zeroclickinfo-spice,AcriCAA/zeroclickinfo-spice,GrandpaCardigan/zeroclickinfo-spice,iambibhas/zeroclickinfo-spice,mayo/zeroclickinfo-spice,cylgom/zeroclickinfo-spice,xaviervalarino/zeroclickinfo-spice,digit4lfa1l/zeroclickinfo-spice,lerna/zeroclickinfo-spice,levaly/zeroclickinfo-spice,cylgom/zeroclickinfo-spice,dogomedia/zeroclickinfo-spice,Queeniebee/zeroclickinfo-spice,marianosimone/zeroclickinfo-spice,samskeller/zeroclickinfo-spice,echosa/zeroclickinfo-spice,Retrobottega/zeroclickinfo-spice,samskeller/zeroclickinfo-spice,rmad17/zeroclickinfo-spice,andrey-p/zeroclickinfo-spice,tagawa/zeroclickinfo-spice,deserted/zeroclickinfo-spice,MoriTanosuke/zeroclickinfo-spice,deserted/zeroclickinfo-spice,loganom/zeroclickinfo-spice,Retrobottega/zeroclickinfo-spice,dogomedia/zeroclickinfo-spice,Kakkoroid/zeroclickinfo-spice,shyamalschandra/zeroclickinfo-spice,hshackathons/zeroclickinfo-spice,claytonspinner/zeroclickinfo-spice,alexandernext/zeroclickinfo-spice,brianrisk/zeroclickinfo-spice,timeanddate/zeroclickinfo-spice,sagarhani/zeroclickinfo-spice,digit4lfa1l/zeroclickinfo-spice,sagarhani/zeroclickinfo-spice,P71/zeroclickinfo-spice,andrey-p/zeroclickinfo-spice,iambibhas/zeroclickinfo-spice,samskeller/zeroclickinfo-spice,xaviervalarino/zeroclickinfo-spice,soleo/zeroclickinfo-spice,samskeller/zeroclickinfo-spice,marianosimone/zeroclickinfo-spice,mayo/zeroclickinfo-spice,bigcurl/zeroclickinfo-spice,tagawa/zeroclickinfo-spice,stevenmg/zeroclickinfo-spice,gautamkrishnar/zeroclickinfo-spice,Dwaligon/zeroclickinfo-spice,rmad17/zeroclickinfo-spice,mayo/zeroclickinfo-spice,stennie/zeroclickinfo-spice,ColasBroux/zeroclickinfo-spice,Kr1tya3/zeroclickinfo-spice,dogomedia/zeroclickinfo-spice,levaly/zeroclickinfo-spice,dachinzo/zeroclickinfo-spice,bdjnk/zeroclickinfo-spice,shyamalschandra/zeroclickinfo-spice,imwally/zeroclickinfo-spice,rubinovitz/zeroclickinfo-spice,stevenmg/zeroclickinfo-spice,jyounker/zeroclickinfo-spice,Queeniebee/zeroclickinfo-spice,bibliotechy/zeroclickinfo-spice,GrandpaCardigan/zeroclickinfo-spice,TomBebbington/zeroclickinfo-spice,bigcurl/zeroclickinfo-spice,echosa/zeroclickinfo-spice,andrey-p/zeroclickinfo-spice,brianrisk/zeroclickinfo-spice,claytonspinner/zeroclickinfo-spice,hshackathons/zeroclickinfo-spice,loganom/zeroclickinfo-spice,mr-karan/zeroclickinfo-spice,toenu23/zeroclickinfo-spice,marianosimone/zeroclickinfo-spice,MoriTanosuke/zeroclickinfo-spice,Kr1tya3/zeroclickinfo-spice,andrey-p/zeroclickinfo-spice,ppant/zeroclickinfo-spice,bdjnk/zeroclickinfo-spice,Faiz7412/zeroclickinfo-spice,jyounker/zeroclickinfo-spice,digit4lfa1l/zeroclickinfo-spice,mr-karan/zeroclickinfo-spice,Dwaligon/zeroclickinfo-spice,andrey-p/zeroclickinfo-spice,P71/zeroclickinfo-spice,stevenmg/zeroclickinfo-spice,ColasBroux/zeroclickinfo-spice,cylgom/zeroclickinfo-spice,evejweinberg/zeroclickinfo-spice,echosa/zeroclickinfo-spice,lerna/zeroclickinfo-spice,soleo/zeroclickinfo-spice,mohan08p/zeroclickinfo-spice,rubinovitz/zeroclickinfo-spice,dachinzo/zeroclickinfo-spice,MoriTanosuke/zeroclickinfo-spice,ScreapDK/zeroclickinfo-spice,xaviervalarino/zeroclickinfo-spice,P71/zeroclickinfo-spice,bigcurl/zeroclickinfo-spice,lerna/zeroclickinfo-spice,GrandpaCardigan/zeroclickinfo-spice,alexandernext/zeroclickinfo-spice,AcriCAA/zeroclickinfo-spice,loganom/zeroclickinfo-spice,Kakkoroid/zeroclickinfo-spice,AcriCAA/zeroclickinfo-spice,kevintab95/zeroclickinfo-spice,ppant/zeroclickinfo-spice,kevintab95/zeroclickinfo-spice,timeanddate/zeroclickinfo-spice,Queeniebee/zeroclickinfo-spice,soleo/zeroclickinfo-spice,Kakkoroid/zeroclickinfo-spice,lerna/zeroclickinfo-spice,sevki/zeroclickinfo-spice,mr-karan/zeroclickinfo-spice,soleo/zeroclickinfo-spice,mohan08p/zeroclickinfo-spice,bigcurl/zeroclickinfo-spice,lw7360/zeroclickinfo-spice,rmad17/zeroclickinfo-spice,brianrisk/zeroclickinfo-spice,Retrobottega/zeroclickinfo-spice,alexandernext/zeroclickinfo-spice,whalenrp/zeroclickinfo-spice,Retrobottega/zeroclickinfo-spice,gautamkrishnar/zeroclickinfo-spice,evejweinberg/zeroclickinfo-spice,claytonspinner/zeroclickinfo-spice,hshackathons/zeroclickinfo-spice,bdjnk/zeroclickinfo-spice,MoriTanosuke/zeroclickinfo-spice,evejweinberg/zeroclickinfo-spice,shyamalschandra/zeroclickinfo-spice,timeanddate/zeroclickinfo-spice,marianosimone/zeroclickinfo-spice,bibliotechy/zeroclickinfo-spice,soleo/zeroclickinfo-spice,shyamalschandra/zeroclickinfo-spice,stennie/zeroclickinfo-spice,Queeniebee/zeroclickinfo-spice,dheeraj143/zeroclickinfo-spice,TomBebbington/zeroclickinfo-spice,lernae/zeroclickinfo-spice,kevintab95/zeroclickinfo-spice,Faiz7412/zeroclickinfo-spice,Kakkoroid/zeroclickinfo-spice,GrandpaCardigan/zeroclickinfo-spice,cylgom/zeroclickinfo-spice,alexandernext/zeroclickinfo-spice,brianrisk/zeroclickinfo-spice,sevki/zeroclickinfo-spice,AcriCAA/zeroclickinfo-spice |
242d122d88d943acf84182085ca31ff2d7483678 | themes/MouseGuests/partials/loop.hbs | themes/MouseGuests/partials/loop.hbs | {{! Previous/next page links - only displayed on page 2+ }}
<div class="extra-pagination inner">
{{pagination}}
</div>
{{! This is the post loop - each post will be output using this markup }}
{{#foreach posts}}
<article class="{{post_class}}">
<header class="post-header">
<h2 class="post-title"><a href="{{url}}">{{{title}}}</a></h2>
</header>
<section class="post-excerpt">
{{#if image}}
{{#if @index % 2 == 0}}
<img src="{{image}}" style="margin-right:15px;float:left;max-width:200px;"/>
{{else}}
<img src="{{image}}" style="margin-left:15px;float:right;max-width:200px;"/>
{{/if}}
{{/if}}
<p>{{excerpt words="26"}} <a class="read-more" href="{{url}}">»</a></p>
</section>
<footer class="post-meta">
{{#if author.image}}<img class="author-thumb" src="{{author.image}}" alt="Author image" nopin="nopin" />{{/if}}
{{author}}
{{tags prefix=" on "}}
<time class="post-date" datetime="{{date format='YYYY-MM-DD'}}">{{date format="DD MMMM YYYY"}}</time>
</footer>
</article>
{{/foreach}}
{{! Previous/next page links - displayed on every page }}
{{pagination}}
| {{! Previous/next page links - only displayed on page 2+ }}
<div class="extra-pagination inner">
{{pagination}}
</div>
{{! This is the post loop - each post will be output using this markup }}
{{#foreach posts}}
<article class="{{post_class}}">
<header class="post-header">
<h2 class="post-title"><a href="{{url}}">{{{title}}}</a></h2>
<section class="post-meta">
<time class="post-date" datetime="{{date format='YYYY-MM-DD'}}">{{date format="DD MMMM YYYY"}}</time> {{tags prefix=" on "}}
</section>
</header>
<section class="post-excerpt">
{{#if image}}
<img src="{{image}}" style="margin-right:15px;float:left;max-width:200px;"/>
{{/if}}
<p>{{excerpt words="26"}} <a class="read-more" href="{{url}}">»</a></p>
</section>
<footer class="post-meta">
{{#if author.image}}<img class="author-thumb" src="{{author.image}}" alt="Author image" nopin="nopin" />{{/if}}
{{author}}
{{tags prefix=" on "}}
<time class="post-date" datetime="{{date format='YYYY-MM-DD'}}">{{date format="DD MMMM YYYY"}}</time>
</footer>
</article>
{{/foreach}}
{{! Previous/next page links - displayed on every page }}
{{pagination}}
| Add dates and tags to main listing | Add dates and tags to main listing
| Handlebars | mit | mouseguests/mouseguests.github.io,mouseguests/mouseguests.github.io,mouseguests/mouseguests.github.io |
d20d267dd08457df0becc777fef0a22064e1af8b | src/views/index.hbs | src/views/index.hbs | <div class="container text-center">
<div class="col-md-6 col-md-offset-3">
<form action="/terms/">
<div class="form-group">
<div class="input-group">
<input class="form-control" name="search-term" placeholder="Enter a search term (ex. `CMS` or `NPN`)" autofocus />
<a href="/terms/new" class="btn btn-success input-group-addon">Add term</a>
</div>
</div>
<div class="form-group">
<button class="btn btn-primary">Search</button>
</div>
</form>
</div>
</div>
| <div class="container text-center">
<div class="col-md-6 col-md-offset-3">
<form action="/terms/">
<div class="form-group">
<div class="input-group">
<input class="form-control" name="search-term" placeholder="What are you looking for?" autofocus />
<a href="/terms/new" class="btn btn-success input-group-addon">
<i class="glyphicon glyphicon-plus"></i>
New term
</a>
</div>
</div>
<div class="form-group">
<button class="btn btn-primary">Search</button>
</div>
</form>
</div>
</div>
| Update home page search-box. New behavior includes iconography with new term button. Also update placeholder text of search box. | Update home page search-box.
New behavior includes iconography with new term button.
Also update placeholder text of search box.
| Handlebars | mit | ritterim/definely |
c0e456ae9e2d980c41225e7acbaadfa17f321849 | app/templates/list.hbs | app/templates/list.hbs | <table class="list">
{{table-rows data=model}}
<tbody>
{{#each model as |item|}}
<tr>
<td>{{input type="checkbox" name=item.id}}</td>
<td>
{{#link-to (concat routeName '.edit') item class="title"}}
{{item.title}}
{{/link-to}}
<ul>
<li class="edit"><a href="/admin/{{routeName}}/{{item.id}}">Edit</a></li>
<li class="delete"><a href="/admin/{{routeName}}/delete/{{item.id}}">Delete</a></li>
{{#if item.author}}
<li class="view"><a href="/{{item.slug}}" target="_blank">View</a></li>
{{/if}}
</ul>
</td>
{{#if item.author}}
<td>
{{#link-to "users.edit" item.author class="author"}}
{{item.author}}
{{/link-to}}
</td>
{{/if}}
{{#if item.updatedAt}}
<td>{{item.updatedAt}}</td>
{{/if}}
</tr>
{{/each}}
</tbody>
{{table-rows data=model}}
</table>
| <table class="list">
{{table-rows data=model}}
<tbody>
{{#each model as |item|}}
<tr>
<td>{{input type="checkbox" name=item.id}}</td>
<td>
{{#link-to (concat routeName '.edit') item class="title"}}
{{item.title}}
{{/link-to}}
<ul>
<li class="edit">
{{#link-to (concat routeName '.edit') item}}Edit{{/link-to}}
</li>
<li class="delete">
{{#link-to (concat routeName '.delete') item}}Delete{{/link-to}}
</li>
{{#if item.author}}
<li class="view"><a href="/{{item.slug}}" target="_blank">View</a></li>
{{/if}}
</ul>
</td>
{{#if item.author}}
<td>
{{#link-to "users.edit" item.author class="author"}}
{{item.author}}
{{/link-to}}
</td>
{{/if}}
{{#if item.updatedAt}}
<td>{{item.updatedAt}}</td>
{{/if}}
</tr>
{{/each}}
</tbody>
{{table-rows data=model}}
</table>
| Convert remaining links into transitions | Convert remaining links into transitions
| Handlebars | mit | small-cake/client,small-cake/client |
6781179fae95810f8397cf7cb1b3088c242b2ad2 | client/app/dashboard/index/template.hbs | client/app/dashboard/index/template.hbs | {{#if model}}
<div class="ui cards">
{{#each model as |student|}}
<div class="card">
<div class="content">
<div class="header">{{student.firstName}} {{student.lastName}}</div>
<div class="description">{{student.classYear}}</div>
</div>
<div class="extra content">
<i class="add icon"></i>
Add School
</div>
</div>
{{/each}}
</div>
{{else}}
<div class="ui stackable centered grid">
<div class="ten wide column">
<h1>No students? Inconceivable!</h1>
<p>College Conductor is built around students
so you’re going to need some.
Once you have a student to work with,
you can focus on adding schools
that the student is interested in.
</p>
<p>Let’s get you started!</p>
{{#link-to 'dashboard.students.new' class="ui large red button"}}Add a student{{/link-to}}
</div>
</div>
{{/if}}
| {{#if model}}
<div class="ui cards">
{{#each model as |student|}}
<div class="card">
<div class="content">
<div class="header">{{student.firstName}} {{student.lastName}}</div>
<div class="description">{{student.classYear}}</div>
</div>
<div class="extra content">
<i class="add green icon"></i>
Add School
</div>
</div>
{{/each}}
</div>
{{else}}
<div class="ui stackable centered grid">
<div class="ten wide column">
<h1>No students? Inconceivable!</h1>
<p>College Conductor is built around students
so you’re going to need some.
Once you have a student to work with,
you can focus on adding schools
that the student is interested in.
</p>
<p>Let’s get you started!</p>
{{#link-to 'dashboard.students.new' class="ui large red button"}}Add a student{{/link-to}}
</div>
</div>
{{/if}}
| Add a bit of extra color. | Add a bit of extra color.
| Handlebars | bsd-2-clause | mblayman/lcp,mblayman/lcp,mblayman/lcp |
9b2178cd4e1905a6e21d963e28e3ce3c917ed1c9 | src/templates/notification-component.hbs | src/templates/notification-component.hbs | <div {{bindAttr class=":notification-inner type"}}>
<div {{action hide}} class="close">
{{svg "icons/cross-fat"}}
</div>
{{message}}
</div>
| <div {{bind-attr class=":notification-inner type"}}>
<div {{action hide}} class="close">
{{svg "icons/cross-fat"}}
</div>
{{message}}
</div>
| Replace bindAttr helper with bind-attr | Replace bindAttr helper with bind-attr
| Handlebars | mit | billysbilling/ember-notification |
62fa003eff8f2ff2bf2c5a018b01ea4133bd8fb9 | oasis-webapp/src/main/java/oasis/web/kibana/Kibana.config.js.hbs | oasis-webapp/src/main/java/oasis/web/kibana/Kibana.config.js.hbs | {{!
These is the app's configuration, If you need to configure the default dashboard, please see dashboards/default
}}
define(['settings'],
function (Settings) {
return new Settings({
{{!
URL to your elasticsearch server. You almost certainly don't
want 'http://localhost:9200' here. Even if Kibana and ES are on
the same host
By default this will attempt to reach ES at the same host you have
elasticsearch installed on. You probably want to set it to the FQDN of your
elasticsearch host
@type {String}
elasticsearch: "http://"+window.location.hostname+":9200",
}}
elasticsearch: window.location.protocol + "//" + window.location.hostname + ":" + window.location.port + "/{{esPath}}",
{{!
The default ES index to use for storing Kibana specific object
such as stored dashboards
@type {String}
}}
kibana_index: "kibana-int",
{{!
Panel modules available. Panels will only be loaded when they are defined in the
dashboard, but this list is used in the "add panel" interface.
@type {Array}
}}
panel_names: [
'histogram',
'map',
'pie',
'table',
'filtering',
'timepicker',
'text',
'fields',
'hits',
'dashcontrol',
'column',
'derivequeries',
'trends',
'bettermap',
'query',
'terms'
]
});
});
| [[!
These is the app's configuration, If you need to configure the default dashboard, please see dashboards/default
]]
define(['settings'],
function (Settings) {
return new Settings({
[[!
URL to your elasticsearch server. You almost certainly don't
want 'http://localhost:9200' here. Even if Kibana and ES are on
the same host
By default this will attempt to reach ES at the same host you have
elasticsearch installed on. You probably want to set it to the FQDN of your
elasticsearch host
@type {String}
elasticsearch: "http://"+window.location.hostname+":9200",
]]
elasticsearch: window.location.protocol + "//" + window.location.hostname + ":" + window.location.port + "/[[esPath]]",
[[!
The default ES index to use for storing Kibana specific object
such as stored dashboards
@type {String}
]]
kibana_index: "kibana-int",
[[!
Panel modules available. Panels will only be loaded when they are defined in the
dashboard, but this list is used in the "add panel" interface.
@type {Array}
]]
panel_names: [
'histogram',
'map',
'pie',
'table',
'filtering',
'timepicker',
'text',
'fields',
'hits',
'dashcontrol',
'column',
'derivequeries',
'trends',
'bettermap',
'query',
'terms'
]
});
});
| Fix Handlebars delimiters in kibana configuration | Fix Handlebars delimiters in kibana configuration
Change-Id: Id9be5610e04376cb4e4afb2cff3ecb3edaa22539
| Handlebars | agpl-3.0 | ozwillo/ozwillo-kernel,ozwillo/ozwillo-kernel,ozwillo/ozwillo-kernel |
a2c795b843f965aa800d371d6bee32c1d850861b | packages/generators/generate/templates/single-type-routes.json.hbs | packages/generators/generate/templates/single-type-routes.json.hbs | {
"routes": [
{
"method": "GET",
"path": "/{{pluralize id}}",
"handler": "{{id}}.find",
"config": {
"policies": []
}
},
{
"method": "PUT",
"path": "/{{pluralize id}}",
"handler": "{{id}}.update",
"config": {
"policies": []
}
},
{
"method": "DELETE",
"path": "/{{pluralize id}}/",
"handler": "{{id}}.delete",
"config": {
"policies": []
}
}
]
}
| {
"routes": [
{
"method": "GET",
"path": "/{{id}}",
"handler": "{{id}}.find",
"config": {
"policies": []
}
},
{
"method": "PUT",
"path": "/{{id}}",
"handler": "{{id}}.update",
"config": {
"policies": []
}
},
{
"method": "DELETE",
"path": "/{{id}}/",
"handler": "{{id}}.delete",
"config": {
"policies": []
}
}
]
}
| Use singular url for single types | Use singular url for single types
| Handlebars | mit | wistityhq/strapi,wistityhq/strapi |
e68d9b3660ef0551d3f2a17c873163383d33638e | app/templates/symbols.hbs | app/templates/symbols.hbs | <h1>Symbol Server</h1>
{{#if enabled}}
<p>
Klondike is configured to process NuGet symbol packages
and serve symbols and source code to your debugger.
</p>
<p>
Point Visual Studio to this symbol server:
</p>
{{code-snippet content=symbolServer}}
<p>
See <a href="http://www.symbolsource.org/Public/Wiki/Using">this guide</a> from
<a href="http://www.symbolsource.org/">SymbolSource</a> for more details on how
to configure Visual Studio.
</p>
<p>
{{#if symbolsAvailable}}
Some packages already have symbols. Debug away!
{{else}}
No symbol packages have been pushed to Klondike.
You'll need to do this before attempting to use Klondike
as a symbol server.
{{/if}}
</p>
{{else}}
<p>
Klondike can be configured to process NuGet symbol packages,
but you need to install Debugging Tools for Windows and tell
Klondike where to find them by editing NuGet.Lucene.Web:DebuggingToolsPath
in Web.config.
</p>
<p>
The path should contain the symstore.exe utility.
</p>
{{/if}}
| <h1>Symbol Server</h1>
{{#if enabled}}
<p>
Klondike is configured to process NuGet symbol packages
and serve symbols and source code to your debugger.
</p>
<p>
Point Visual Studio to this symbol server:
</p>
{{code-snippet content=symbolServer}}
<p>
See <a href="http://www.symbolsource.org/Public/Wiki/Using">this guide</a> from
<a href="http://www.symbolsource.org/">SymbolSource</a> for more details on how
to configure Visual Studio.
</p>
<p>
{{#if symbolsAvailable}}
Some packages already have symbols. Debug away!
{{else}}
No symbol packages have been pushed to Klondike.
You'll need to do this before attempting to use Klondike
as a symbol server.
{{/if}}
</p>
{{else}}
<p>
Klondike can be configured to process NuGet symbol packages,
but you need to install Debugging Tools for Windows and tell
Klondike where to find them by editing <code>debuggingToolsPath</code>
in <code>Settings.config</code>.
</p>
<p>
The path should contain the <code>symstore.exe</code> utility.
</p>
{{/if}}
| Correct location for enabling symbol server. | Correct location for enabling symbol server.
| Handlebars | apache-2.0 | fhchina/Klondike,Stift/Klondike,jochenvangasse/Klondike,themotleyfool/Klondike,themotleyfool/Klondike,jochenvangasse/Klondike,fhchina/Klondike,jochenvangasse/Klondike,Stift/Klondike,themotleyfool/Klondike,Stift/Klondike,fhchina/Klondike |
1074faaa847bb95e7d89c3c8869d71a58331f291 | src/legacy/templates/workEditT3.handlebars | src/legacy/templates/workEditT3.handlebars | <section class="panel workspace-edit">
<div class="edit-accordion">
<div class="edit-section">
<div class="edit-section__head">
<h1>Metadata</h1>
<p>Title | Summary | Keywords</p>
</div>
<div class="edit-section__content">
<div id="metadata-list">
<div>
<label for="title">Title
<textarea class="auto-size" id="title">{{this.description.title}}</textarea>
</label>
</div>
<div id="summary-p">
<label for="summary">Summary
<textarea class="auto-size" id="summary">{{this.description.summary}}</textarea>
</label>
</div>
<div>
<label for="keywords">Keywords
<input name="tags" id="keywords" value="{{this.description.keywords}}"
style="display: none;">
</label>
<ul id="keywordsTag"></ul>
</div>
<div>
<label for="metaDescription">Meta description
<textarea class="auto-size"
id="metaDescription">{{this.description.metaDescription}}</textarea>
</label>
</div>
</div>
</div>
</div>
<div id="timeseries"></div>
<div id="bulletins"></div>
<div id="articles"></div>
<div id="datasets"></div>
<div id="qmi"></div>
<div id="methodology"></div>
</div>
<nav class="edit-nav">
{{> editNav}}
</nav>
</section> | <section class="panel workspace-edit">
<div class="edit-accordion">
<div class="edit-section">
<div class="edit-section__head">
<h1>Metadata</h1>
<p>Title | Summary | Keywords</p>
</div>
<div class="edit-section__content">
<div id="metadata-list">
<div>
<label for="title">Title
<textarea class="auto-size" id="title">{{this.description.title}}</textarea>
</label>
</div>
<div id="summary-p">
<label for="summary">Summary
<textarea class="auto-size" id="summary">{{this.description.summary}}</textarea>
</label>
</div>
<div>
<label for="keywords">Keywords
<input name="tags" id="keywords" value="{{this.description.keywords}}"
style="display: none;">
</label>
<ul id="keywordsTag"></ul>
</div>
<div>
<label for="metaDescription">Meta description
<textarea class="auto-size"
id="metaDescription">{{this.description.metaDescription}}</textarea>
</label>
</div>
</div>
</div>
</div>
<div id="timeseries"></div>
<div id="bulletins"></div>
<div id="articles"></div>
<div id="datasets"></div>
<div id="qmi"></div>
<div id="methodology"></div>
<div id="highlighted-content"></div>
</div>
<nav class="edit-nav">
{{> editNav}}
</nav>
</section> | Add highlighted content accordion to product page editor | Add highlighted content accordion to product page editor
| Handlebars | mit | ONSdigital/florence,ONSdigital/florence,ONSdigital/florence,ONSdigital/florence |
f43f41142b3182370c331cfab2ad62ff55d764d7 | client/app/templates/cabins/header-right.hbs | client/app/templates/cabins/header-right.hbs | {{#if model.er_publisert}}
<a class="item" {{action "unpublish"}}>
<i class="hide icon"></i> Avpubliser
</a>
{{#ui-popup on="hover" position="bottom center"}}
Hytta er publisert, klikk for å avpublisere.
{{/ui-popup}}
{{else}}
<a class="item" {{action "publish"}}>
<i class="unhide icon"></i> Publiser
</a>
{{#ui-popup on="hover" position="bottom center"}}
Hytta er ikke publisert, klikk for å publisere.
{{/ui-popup}}
{{/if}}
<a class="item {{if model.isSaving "loading"}}" {{action "save"}}>
<i class="save icon"></i> Lagre
</a>
| {{#if model.er_publisert}}
<div class="ui simple dropdown item">
<span class="ui green circular label" style="margin-right: .7em;"><i class="cloud icon"></i></span> Publisert
<i class="dropdown icon"></i>
<div class="menu">
<a class="item" {{action "unpublish"}}>Avpubliser</a>
</div>
</div>
{{else}}
<div class="ui simple dropdown item">
<span class="ui yellow circular label" style="margin-right: .7em;"><i class="cloud icon"></i></span> Ikke publisert
<i class="dropdown icon"></i>
<div class="menu">
<a class="item" {{action "publish"}}>Publiser</a>
</div>
</div>
{{/if}}
<a class="item {{if model.isSaving "loading"}}" {{action "save"}} data-test-action="save">
<i class="cloud icon"></i> Lagre
</a>
| Improve publish toggle button design | Improve publish toggle button design
| Handlebars | mit | Turistforeningen/Hytteadmin,Turistforeningen/Hytteadmin |
e9eba828608103a41dbf5941b53e860295384cdf | frontend/app/templates/application.hbs | frontend/app/templates/application.hbs | <div class="contain-to-grid">
<nav class="top-bar" data-topbar>
<ul class="title-area">
<li class="name">
<h1>{{link-to 'Rescue Mission' 'index'}}</h1>
</li>
</ul>
<section class="top-bar-section">
<ul class="right">
<li class="has-form">
{{link-to 'Ask a Question' 'questions.new' class='button'}}
</li>
<li>{{link-to 'Questions' 'questions.index'}}</li>
{{#if session.isAuthenticated}}
<li><a href="#">{{session.currentUser.username}}</a></li>
<li><a href="#" {{action 'invalidateSession'}}>Log out</a></li>
{{else}}
<li>
{{link-to 'Log in' 'login'}}
</li>
{{/if}}
</ul>
</section>
</nav>
</div>
<div class="row">
<div class="small-12 columns">
<p>{{x-wuphf}}</p>
{{outlet}}
</div>
</div>
| <div class="contain-to-grid">
<nav class="top-bar" data-topbar>
<ul class="title-area">
<li class="name">
<h1>
{{link-to 'Rescue Mission' 'questions.index'
(query-params status='null' page='1')}}
</h1>
</li>
</ul>
<section class="top-bar-section">
<ul class="right">
<li class="has-form">
{{link-to 'Ask a Question' 'questions.new' class='button'}}
</li>
<li>{{link-to 'Questions' 'questions.index'}}</li>
{{#if session.isAuthenticated}}
<li><a href="#">{{session.currentUser.username}}</a></li>
<li><a href="#" {{action 'invalidateSession'}}>Log out</a></li>
{{else}}
<li>
{{link-to 'Log in' 'login'}}
</li>
{{/if}}
</ul>
</section>
</nav>
</div>
<div class="row">
<div class="small-12 columns">
<p>{{x-wuphf}}</p>
{{outlet}}
</div>
</div>
| Reset query params when going back to the index page | Reset query params when going back to the index page
| Handlebars | mit | LaunchAcademy/rescue_mission,LaunchAcademy/rescue_mission,LaunchAcademy/rescue_mission |
884b64e659f53ef6dbc34dbf336db516fcba3964 | partials/comments.hbs | partials/comments.hbs | {{!
By Default, this theme supports comments supplied by Disqus (http://disqus.com)
For assistance in setting up your own Disqus account and customizing it for your needs,
please see the Disqus QuickStart Guide: http://help.disqus.com/customer/portal/articles/466182-quick-start-guide
}}
{{! Use this to force light-on-dark theme: <style>#disqus_thread { color: #000; }</style> }}
{{! Use this to force dark-on-light theme: <style>#disqus_thread { color: #FFF; }</style> }}
<button class="btn" id="load-comments">Load comments</button>
<div id="disqus_thread"></div>
| {{!
By Default, this theme supports comments supplied by Disqus (http://disqus.com)
For assistance in setting up your own Disqus account and customizing it for your needs,
please see the Disqus QuickStart Guide: http://help.disqus.com/customer/portal/articles/466182-quick-start-guide
}}
{{! Use this to force light-on-dark theme: <style>#disqus_thread { color: #000; }</style> }}
{{! Use this to force dark-on-light theme: <style>#disqus_thread { color: #FFF; }</style> }}
<button class="btn btn--primary" id="load-comments">Load comments</button>
<div id="disqus_thread"></div>
| Load comment button now looks like button, which is nice | Load comment button now looks like button, which is nice
| Handlebars | mit | jegtnes/jegtnes-theme |
d3b022acb48cfdf16a829e576b35c61bd8dd64ae | client/app/dashboard/find-school/template.hbs | client/app/dashboard/find-school/template.hbs | <h2>Find a school for {{model.firstName}} {{model.lastName}}</h2>
<form {{action 'submit' on='submit'}} class="ui form">
<div class="eight wide field">
<div class="ui search">
<div class="ui icon input">
<input class="prompt" placeholder="Search schools..." type="text">
<i class="search icon"></i>
</div>
</div>
</div>
<button type="submit" class="ui red submit button">Search</button>
</form>
| <h2>Find a school for {{model.firstName}} {{model.lastName}}</h2>
<form {{action 'submit' on='submit'}} class="ui form">
<div class="eight wide field">
<div class="ui search">
<div class="ui icon input">
<input class="prompt" placeholder="Search schools..." type="text">
<i class="search icon"></i>
</div>
</div>
</div>
<button type="submit" class="ui red submit button">Search</button>
</form>
<div class="ui two column padded centered grid">
<div class="row">
<div class="center aligned column">
<i class="massive grey university icon"></i>
</div>
</div>
<div class="row">
<div class="center aligned column">
Begin
by typing the school name
in the search bar.
</div>
</div>
</div>
| Add an empty state for the search schools page. | Add an empty state for the search schools page.
Fixes #168
| Handlebars | bsd-2-clause | mblayman/lcp,mblayman/lcp,mblayman/lcp |
88b8dacf5b796d4b978f77539ca968108323000f | tests/dummy/app/templates/application.hbs | tests/dummy/app/templates/application.hbs | <nav>
<div class="nav-wrapper">
<div class="container-fluid">
{{#link-to "index" class="brand-logo white-text"}}
<img class="ember-logo hide-on-med-and-down" src="images/ember-logo.svg" alt="" />
<span>Time Machine</span>
{{/link-to}}
<ul class="right hide-on-med-and-down">
{{!-- {{#link-to "navbar" tagName="li"}}
{{link-to "Navbar" "navbar"}}
{{/link-to}} --}}
<li>
<a href="https://github.com/offirgolan/ember-time-machine" target="_blank" class="fa fa-github"></a>
</li>
</ul>
</div>
<a class="button-collapse" data-activates="sidenav">
<i class="fa fa-menu"></i>
</a>
</div>
<ul id="sidenav" class="side-nav">
{{yield}}
</ul>
</nav>
{{outlet}}
{{!-- ember-cli-materialize modal container --}}
{{md-modal-container}}
| <nav>
<div class="nav-wrapper">
<div class="container-fluid">
{{#link-to "index" class="brand-logo white-text"}}
<img class="ember-logo hide-on-med-and-down" src="images/ember-logo.svg" alt="" />
<span>Time Machine</span>
{{/link-to}}
<ul class="right hide-on-med-and-down">
{{!-- {{#link-to "navbar" tagName="li"}}
{{link-to "Navbar" "navbar"}}
{{/link-to}} --}}
<li>
<a href="https://github.com/offirgolan/ember-time-machine/wiki" target="_blank">Documentation</a>
<a href="https://github.com/offirgolan/ember-time-machine" target="_blank" class="fa fa-github"></a>
</li>
</ul>
</div>
<a class="button-collapse" data-activates="sidenav">
<i class="fa fa-menu"></i>
</a>
</div>
<ul id="sidenav" class="side-nav">
{{yield}}
</ul>
</nav>
{{outlet}}
{{!-- ember-cli-materialize modal container --}}
{{md-modal-container}}
| Add link to docs in demo | Add link to docs in demo
| Handlebars | mit | offirgolan/ember-time-machine,offirgolan/ember-time-machine |
b7092be5503a040368814169764762451805e024 | app/assets/javascripts/templates/layouts/assignee_overlay_layout.hbs | app/assets/javascripts/templates/layouts/assignee_overlay_layout.hbs | <div {{bind-attr class=":overlay overlayClass"}}>
<div class="overlay-container">
{{partial "overlay-header"}}
<main class="overlay-content">{{yield}}</main>
{{progress-spinner visible=isLoading}}
<footer class="overlay-footer">
<div class="overlay-footer-content">
<div class="assignee-drop-down chosen-style-override">
<label for="assignee">This card is owned by</label>
{{chosen content=assignees
name="assignee"
prompt="Please select assignee"
value=assignee
changeAction="saveModel"
optionValuePath="content"
optionLabelPath="content.fullName"
class="chosen-assignee"}}
</div>
<div class="overlay-completed-checkbox">
{{partial 'overlay-completed-checkbox'}}
</div>
</div>
<a {{bind-attr class=":primary-button :overlay-close-button"}} {{action "closeAction"}}>Close</a>
</footer>
</div>
</div>
| <div {{bind-attr class=":overlay overlayClass"}}>
<div class="overlay-container">
{{partial "overlay-header"}}
<main class="overlay-content">{{yield}}</main>
{{progress-spinner visible=isLoading}}
<footer class="overlay-footer">
<div class="overlay-footer-content">
<div class="assignee-drop-down chosen-style-override">
<label for="assignee">This card is owned by</label>
{{chosen content=assignees
name="assignee"
prompt="Please select assignee"
value=assignee
changeAction="saveModel"
optionValuePath="content"
optionLabelPath="content.fullName"
class="chosen-assignee"}}
</div>
{{partial 'overlay-completed-checkbox'}}
</div>
<a {{bind-attr class=":primary-button :overlay-close-button"}} {{action "closeAction"}}>Close</a>
</footer>
</div>
</div>
| Fix completed checkbox on assignee layout | Fix completed checkbox on assignee layout
| Handlebars | mit | johan--/tahi,johan--/tahi,johan--/tahi,johan--/tahi |
4b3d277033ec5a5350b5e7a78afe09b509da60b3 | views/partials/buttons/icons.handlebars | views/partials/buttons/icons.handlebars |
<button class="pure-button">
<i class="icon-cog icon-spin"></i>
Settings
</button>
<a class="pure-button" href="#0">
<i class="icon-shopping-cart icon-large"></i>
Checkout
</a>
|
<button class="pure-button">
<i class="icon-cog"></i>
Settings
</button>
<a class="pure-button" href="#0">
<i class="icon-shopping-cart icon-large"></i>
Checkout
</a>
| Stop cog icon from spinning on Buttons page | Stop cog icon from spinning on Buttons page
Closes #99
| Handlebars | bsd-3-clause | jamesalley/pure-site,yahoo/pure-site,yahoo/pure-site,weigang992003/pure-css-chinese,chensy0203/pure-site,jamesalley/pure-site,pandoraui/pure-site,weigang992003/pure-css-chinese |
55ed25e09d9e6619758373ce01b4e47258f02bb5 | components/web/apps/org.wso2.carbon.apimgt.publisher/src/main/pages/index.hbs | components/web/apps/org.wso2.carbon.apimgt.publisher/src/main/pages/index.hbs | {{layout "main"}}
{{favicon "images/favicon.png" type="image/png"}}
{{title "Home | " @config.appName}}
{{css "css/portal.css"}}
{{css "css/asset.css"}}
{{#fillZone "content"}}
<h1>WelCome to store</h1>
{{/fillZone}} | {{layout "main"}}
{{favicon "images/favicon.png" type="image/png"}}
{{title "Home | " @config.appName}}
{{css "css/portal.css"}}
{{css "css/asset.css"}}
{{#fillZone "content"}}
<h1>WelCome to Publisher</h1>
{{/fillZone}} | Change landing page text to publisher | Change landing page text to publisher
| Handlebars | apache-2.0 | dewmini/carbon-apimgt,ChamNDeSilva/carbon-apimgt,lakmali/carbon-apimgt,thusithak/carbon-apimgt,Minoli/carbon-apimgt,Minoli/carbon-apimgt,sambaheerathan/carbon-apimgt,thusithak/carbon-apimgt,dewmini/carbon-apimgt,ChamNDeSilva/carbon-apimgt,abimarank/carbon-apimgt,rswijesena/carbon-apimgt,ChamNDeSilva/carbon-apimgt,abimarank/carbon-apimgt,lalaji/carbon-apimgt,Minoli/carbon-apimgt,thusithak/carbon-apimgt,sambaheerathan/carbon-apimgt,sambaheerathan/carbon-apimgt,lakmali/carbon-apimgt,dewmini/carbon-apimgt,rswijesena/carbon-apimgt,abimarank/carbon-apimgt,lalaji/carbon-apimgt,rswijesena/carbon-apimgt,lalaji/carbon-apimgt,lakmali/carbon-apimgt |
2077c24a3c32b716ae8efa9dd627833bab62e301 | static/templates/typing_notification.hbs | static/templates/typing_notification.hbs | <li data-email="{{this.email}}" class="typing_notification">{{#tr this}}__full_name__ is typing...{{/tr}}</li>
| <li data-email="{{this.email}}" class="typing_notification">{{#tr this}}__full_name__ is typing…{{/tr}}</li>
| Use unicode … instead of 3-dots. | typing_indicators: Use unicode … instead of 3-dots.
This looks nicer for __username__ is typing... typing indicator.
| Handlebars | apache-2.0 | punchagan/zulip,hackerkid/zulip,hackerkid/zulip,hackerkid/zulip,rht/zulip,eeshangarg/zulip,eeshangarg/zulip,zulip/zulip,kou/zulip,hackerkid/zulip,eeshangarg/zulip,kou/zulip,punchagan/zulip,andersk/zulip,punchagan/zulip,zulip/zulip,eeshangarg/zulip,punchagan/zulip,andersk/zulip,zulip/zulip,zulip/zulip,punchagan/zulip,zulip/zulip,andersk/zulip,andersk/zulip,eeshangarg/zulip,punchagan/zulip,kou/zulip,zulip/zulip,punchagan/zulip,andersk/zulip,zulip/zulip,kou/zulip,eeshangarg/zulip,rht/zulip,kou/zulip,rht/zulip,kou/zulip,andersk/zulip,rht/zulip,hackerkid/zulip,kou/zulip,eeshangarg/zulip,rht/zulip,hackerkid/zulip,rht/zulip,hackerkid/zulip,andersk/zulip,rht/zulip |
0ea94b23f83d444007296dede2933b983f2f9034 | views/index.handlebars | views/index.handlebars | <!DOCTYPE html>
<html>
<head>
<title>Bluethroat</title>
</head>
<body>
{{#if messages}}
<div class="messages">
{{#each messages}}
<div class="messages--item">{{this}}</div>
{{/each}}
</div>
{{/if}}
<div class="content">
<div class="controls">
<a href="/stop">Stop</a><br/>
<a href="/play">Play</a>
</div>
<div class="settings-form">
<form action="/" method="post">
{{{settingsForm}}}
<div class="field">
<input type="submit" value="Save" />
</div>
</form>
</div>
</div>
</body>
</html> | <!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Bluethroat</title>
</head>
<body>
{{#if messages}}
<div class="messages">
{{#each messages}}
<div class="messages--item">{{this}}</div>
{{/each}}
</div>
{{/if}}
<div class="content">
<div class="controls">
<a href="/stop">Stop</a><br/>
<a href="/play">Play</a>
</div>
<div class="settings-form">
<form action="/" method="post">
{{{settingsForm}}}
<div class="field">
<input type="submit" value="Save" />
</div>
</form>
</div>
</div>
</body>
</html> | Add "viewport" meta for mobile devices | Add "viewport" meta for mobile devices
| Handlebars | apache-2.0 | JustBlackBird/bluethroat,JustBlackBird/bluethroat,JustBlackBird/bluethroat |
30d7c8c76db5f470a41f538f5aaf4da51760f278 | app/templates/index.hbs | app/templates/index.hbs | <div class="row">
<div class="col-xs-12 page-header">
<h2>Entrada da gramática</h2>
<h3>Configure a gramática utilizada na análise sintática</h3>
</div>
</div>
{{grammar-input model}}
<div class="row">
<div class="col-xs-12 text-right">
{{#bs-button type="primary" size="lg" action="next" disabled=(not grammar.isValid)}}
Próximo {{fa-icon "arrow-circle-right"}}
{{/bs-button}}
</div>
</div>
| <div class="row">
<div class="col-xs-12 page-header">
<h2>Entrada da gramática</h2>
<h3>Configure a gramática utilizada na análise sintática</h3>
</div>
</div>
{{grammar-input model}}
<div class="row">
<div class="col-xs-12 text-right">
{{#bs-button type="primary" size="lg" action="next" disabled=(not model.isValid)}}
Próximo {{fa-icon "arrow-circle-right"}}
{{/bs-button}}
</div>
</div>
| Fix typo in template variable name | Fix typo in template variable name
| Handlebars | mit | eduardoweiland/analisador-slr,eduardoweiland/analisador-slr |
88f502236af0083e5b6cd845244dca8d588f24c5 | app/assets/templates/reshare_tpl.jst.hbs | app/assets/templates/reshare_tpl.jst.hbs | <div class="reshare">
{{#if root}}
<div class="media">
{{#with root}}
<a href="/people/{{author.guid}}" class="img {{{hovercardable this}}}">
<img src="{{author.avatar.small}}" class="avatar" />
</a>
{{/with}}
{{#with root}}
<div class="bd">
<div>
<a href="/people/{{author.guid}}" class="author {{{hovercardable this}}}">{{author.name}}</a>
<span class="details grey">
-
<a href="/posts/{{id}}">
<time class="timeago" datetime="{{created_at}}"/>
</a>
{{#if interactions.reshares_count}}
-
{{t "stream.reshares" count=interactions.reshares_count}}
{{/if}}
</span>
</div>
{{/with}}
{{> status-message}}
</div>
</div>
{{else}}
<p>
{{t "stream.original_post_deleted"}}
</p>
{{/if}}
</div>
| <div class="reshare">
{{#if root}}
<div class="media">
{{#with root}}
<a href="/people/{{author.guid}}" class="img {{{hovercardable this}}}">
<img src="{{author.avatar.small}}" class="avatar" />
</a>
{{/with}}
{{#with root}}
<div class="bd">
<div>
<a href="/people/{{author.guid}}" class="author {{{hovercardable author}}}">{{author.name}}</a>
<span class="details grey">
-
<a href="/posts/{{id}}">
<time class="timeago" datetime="{{created_at}}"/>
</a>
{{#if interactions.reshares_count}}
-
{{t "stream.reshares" count=interactions.reshares_count}}
{{/if}}
</span>
</div>
{{/with}}
{{> status-message}}
</div>
</div>
{{else}}
<p>
{{t "stream.original_post_deleted"}}
</p>
{{/if}}
</div>
| Fix arguments for hevercardable helper | Fix arguments for hevercardable helper
We should pass person object to the hovecrardable helper. In the
current case `this` is the status message, not the status
author. So, let's pass `author` instead of `this`.
| Handlebars | agpl-3.0 | diaspora/diaspora,despora/diaspora,spixi/diaspora,Flaburgan/diaspora,Amadren/diaspora,despora/diaspora,SuperTux88/diaspora,KentShikama/diaspora,Muhannes/diaspora,Amadren/diaspora,diaspora/diaspora,jhass/diaspora,diaspora/diaspora,Flaburgan/diaspora,Flaburgan/diaspora,geraspora/diaspora,geraspora/diaspora,spixi/diaspora,diaspora/diaspora,geraspora/diaspora,despora/diaspora,spixi/diaspora,KentShikama/diaspora,Flaburgan/diaspora,jhass/diaspora,Muhannes/diaspora,SuperTux88/diaspora,SuperTux88/diaspora,Amadren/diaspora,Amadren/diaspora,Muhannes/diaspora,KentShikama/diaspora,jhass/diaspora,geraspora/diaspora,Muhannes/diaspora,jhass/diaspora,spixi/diaspora,KentShikama/diaspora,SuperTux88/diaspora,despora/diaspora |
d594010d1ec423bc9469e7b66b7ebcd84ede4f2f | src/main/web/templates/handlebars/partials/highcharts/chart.handlebars | src/main/web/templates/handlebars/partials/highcharts/chart.handlebars | <div class="markdown-chart-container panel--bottom-mar print--avoid-break">
<h4 class="flush--third--vertical">{{{sub (sup title)}}}</h4>
{{#if subtitle}}
<h5 class="flush--third--bottom">{{{sub (sup subtitle)}}}</h5>
{{/if}}
<div id="chart-{{filename}}" data-filename="{{filename}}" data-uri="{{uri}}" class="markdown-chart">
<!--[if gt IE 8]><!--><noscript><!--[endif]-->
<img src="/chartimage?uri={{uri}}&width={{width}}" alt="{{alt-text}}" />
<!--[if gt IE 8]><!--></noscript><!--[endif]-->
</div>
{{#if source}}<h5 class="flush--third--bottom font-size--h6">Source: {{source}}</h5>{{/if}}
{{#if notes}}
<h6 class="flush--third--bottom">Notes:</h6>
{{md notes}}
{{/if}}
<h5 class="print--hide font-size--h6">Download this chart</h5>
<a class="btn btn--primary print--hide js-chart-image-src" href="/chartimage?uri={{uri}}"
data-ga-event="" data-ga-event-category="download-image" data-ga-event-label="{{{sub (sup title)}}}">Image</a>
{{> partials/highcharts/download format='csv'}}
{{> partials/highcharts/download format='xls'}}
</div>
| <div class="markdown-chart-container panel--bottom-mar print--avoid-break">
<h4 class="flush--third--vertical">{{{sub (sup title)}}}</h4>
{{#if subtitle}}
<h5 class="flush--third--bottom">{{{sub (sup subtitle)}}}</h5>
{{/if}}
<div id="chart-{{filename}}" data-filename="{{filename}}" data-uri="{{uri}}" class="markdown-chart">
<!--[if gt IE 8]><!--><noscript><!--[endif]-->
<img src="/chartimage?uri={{uri}}&width={{width}}" alt="{{alt-text}}" />
<!--[if gt IE 8]><!--></noscript><!--[endif]-->
</div>
{{#if source}}<h5 class="flush--third--bottom font-size--h6">Source: {{source}}</h5>{{/if}}
{{#if notes}}
<h6 class="flush--third--bottom">Notes:</h6>
{{md notes}}
{{/if}}
<h5 class="print--hide font-size--h6">Download this chart</h5>
<a class="btn btn--primary print--hide js-chart-image-src" href="/chartimage?uri={{uri}}"
data-ga-event="" data-ga-event-category="download-image" data-ga-event-label="{{{sub (sup title)}}}" download="{{{sub (sup title)}}}">Image</a>
{{> partials/highcharts/download format='csv'}}
{{> partials/highcharts/download format='xls'}}
</div>
| Add download attribute to image downloads | Add download attribute to image downloads
| Handlebars | mit | ONSdigital/babbage,ONSdigital/babbage,ONSdigital/babbage,ONSdigital/babbage |
a2b5bbb018c0feba10737c0a37bd237848cf7d51 | slingo-ember/app/templates/application.hbs | slingo-ember/app/templates/application.hbs | <h2 id='title'>Welcome to Slot Machine Bingo</h2>
<h3>Spins: {{ spins }}</h3>
<h3>Score: {{ score }}</h3>
<a class="btn btn-primary" {{ action newGameClick }}>New Game</a>
<a class="btn btn-primary" {{ action spinClick }}>Spin</a>
<div class="container">
{{#each row in cells }}
<div class="row">
{{#each cell in row }}
<div class="col-md-1 cell" {{ action cellClick cell}}>{{ cell.value }}</div>
{{/each}}
</div>
{{/each}}
<div class="row spinner-row">
{{#each cell in spinner}}
<div class="col-md-1 spinner-col">{{ cell }}</div>
{{/each}}
</div>
</div>
| <h2 id='title'>Welcome to Slot Machine Bingo</h2>
<a class="btn btn-primary" {{ action newGameClick }}>New Game</a>
<h3>Spins: {{ spins }}</h3>
<h3>Score: {{ score }}</h3>
<div class="container">
{{#each row in cells }}
<div class="row">
{{#each cell in row }}
<div {{bind-attr class=":col-md-1 :cell cell.isCovered"}}class="col-md-1 cell" {{ action cellClick cell}}>{{ cell.value }}</div>
{{/each}}
</div>
{{/each}}
<div class="row spinner-row">
{{#each cell in spinner}}
<div {{bind-attr class=":col-md-1 :spinner-col cell.icon"}}>{{ cell.value }}</div>
{{/each}}
</div>
<a class="btn btn-primary" {{ action spinClick }}>Spin</a>
</div>
| Move spin button away from new game button | Move spin button away from new game button
| Handlebars | mit | TheDudeWithTheThing/slot-machine-bingo |
cdfed2a62d0f49552d4173a2c0eeed9caf52442e | addon/templates/components/x-file-input.hbs | addon/templates/components/x-file-input.hbs | {{input id=randomId type="file" class="x-file--input" name=name
disabled=disabled multiple=multiple tabindex=tabindex accept=accept}}
<label for="{{randomId}}">
{{#if hasBlock}}
{{yield}}
{{else}}
{{alt}}
{{/if}}
</label>
| <input type="file" id={{randomId}} class="x-file--input" name={{name}}
disabled={{disabled}} multiple={{multiple}} tabindex={{tabindex}} accept={{accept}}>
<label for="{{randomId}}">
{{#if hasBlock}}
{{yield}}
{{else}}
{{alt}}
{{/if}}
</label>
| Use a plain <input> instead of {{input}} | Use a plain <input> instead of {{input}}
| Handlebars | mit | thefrontside/emberx-file-input,thefrontside/emberx-files,thefrontside/emberx-file-input,thefrontside/emberx-files |
18426527a62f64c6e0bc28f8719f9da7a186420e | app/assets/javascripts/templates/overlays/unsaved_data_overlay.hbs | app/assets/javascripts/templates/overlays/unsaved_data_overlay.hbs | <div class="overlay-container">
<header class="overlay-header">
</header>
<section class="overlay-content">
<h2>You have unsaved changes</h2>
<div class="button-row">
<a class="primary-button" {{action "discardChanges"}}>Discard Changes</a>
<a class="primary-button" {{action "cancelTransition"}}>Continue Editing</a>
<a class="btn close-overlay" {{action 'cancelTransition'}}>Cancel</a>
</div>
</section>
<footer class="overlay-footer">
<div class="overlay-footer-content">
</div>
</footer>
</div>
| <div class="overlay-container">
<section class="overlay-content">
<h2>You have unsaved changes</h2>
<div class="button-row">
<a class="primary-button" {{action "discardChanges"}}>Discard Changes</a>
<a class="primary-button" {{action "cancelTransition"}}>Continue Editing</a>
<a class="btn close-overlay" {{action 'cancelTransition'}}>Cancel</a>
</div>
</section>
</div>
| Remove unneeded header and footer from template | Remove unneeded header and footer from template | Handlebars | mit | johan--/tahi,johan--/tahi,johan--/tahi,johan--/tahi |
d8b82354c7f02fe0a6d580c63b5855842722c722 | src/tasks/dump_db/dump-export.sql.hbs | src/tasks/dump_db/dump-export.sql.hbs | BEGIN;
{{~#each tables}}
{{~#if this.filter}}
CREATE TEMPORARY VIEW "dump_db_{{this.name}}" AS (
SELECT {{this.columns}}
FROM "{{this.name}}"
WHERE {{this.filter}}
);
{{~/if}}
{{~/each}}
COMMIT;
BEGIN ISOLATION LEVEL SERIALIZABLE READ ONLY DEFERRABLE;
{{~#each tables}}
{{~#if this.filter}}
\copy (SELECT * FROM "dump_db_{{this.name}}") TO 'data/{{this.name}}.csv' WITH CSV HEADER
{{~else}}
\copy "{{this.name}}" ({{this.columns}}) TO 'data/{{this.name}}.csv' WITH CSV HEADER
{{~/if}}
{{~/each}}
COMMIT;
| BEGIN ISOLATION LEVEL SERIALIZABLE READ ONLY DEFERRABLE;
{{~#each tables}}
{{~#if this.filter}}
\copy (
SELECT {{this.columns}}
FROM "{{this.name}}"
WHERE {{this.filter}}
) TO 'data/{{this.name}}.csv' WITH CSV HEADER
{{~else}}
\copy "{{this.name}}" ({{this.columns}}) TO 'data/{{this.name}}.csv' WITH CSV HEADER
{{~/if}}
{{~/each}}
COMMIT;
| Move db_dump filtering logic into main read-only transaction | Move db_dump filtering logic into main read-only transaction
| Handlebars | apache-2.0 | rust-lang/crates.io,rust-lang/crates.io,rust-lang/crates.io,rust-lang/crates.io |
16f4cea7f52b2560d7502d523c74feecf794919a | templates/partials/table-of-contents.hbs | templates/partials/table-of-contents.hbs | <nav class="docs-toc-wrap" id="docsToc" data-sticky-container>
<div class="docs-toc hide" id="docsTOC" data-sticky data-margin-top="6" data-anchor="docs">
<ul class="vertical menu" data-docs-toc>
<li class="docs-nav-title">{{ title }}</li>
</ul>
<hr class="docs-toc-divider small">
<ul class="docs-contribute-menu">
<li><a href="{{ editLink repoName editBranch fileName }}" target="_blank"><i class="fi-pencil"></i>Edit this Page</a></li>
<li><a href="{{#if library}}{{ library.github }}/issues{{else}}{{ issueLink repoName title }}{{/if}}" target="_blank"><i class="fi-social-github"></i>Report a Bug</a></li>
<li><a href="http://foundation.zurb.com/forum?search={{title}}" target="_blank"><i class="fi-comment"></i>Get Help</a></li>
</ul>
<div class="foundation-toc-ad-unit" id="TOCAdUnit"></div>
</div>
</nav>
| <nav class="docs-toc-wrap" id="docsToc" data-sticky-container>
<div class="docs-toc hide" id="docsTOC" data-sticky data-margin-top="6" data-anchor="docs">
<ul class="vertical menu" data-docs-toc>
<li class="docs-nav-title">{{ title }}</li>
</ul>
<hr class="docs-toc-divider small">
<ul class="docs-contribute-menu">
<li><a href="{{ editLink repoName editBranch fileName }}" target="_blank"><i class="fi-pencil"></i>Edit this Page</a></li>
<li><a href="{{#if library}}{{ library.github }}/issues{{else}}{{ issueLink repoName title }}{{/if}}" target="_blank"><i class="fi-social-github"></i>Report a Bug</a></li>
<li><a href="http://foundation.zurb.com/forum?search={{title}}" target="_blank"><i class="fi-comment"></i>Get Help</a></li>
<li><a href="https://zurb-foundation-slack-invites.herokuapp.com/" target="_blank">Join Slack Channel</a></li>
</ul>
<div class="foundation-toc-ad-unit" id="TOCAdUnit"></div>
</div>
</nav>
| Add link to slack channel inviter | Add link to slack channel inviter
| Handlebars | mit | zurb/foundation-docs,zurb/foundation-docs |
45fde7d321bfb2baec3dc17d9602fb2dd3c0b8f9 | tests/dummy/app/templates/application.hbs | tests/dummy/app/templates/application.hbs | <h2 id="title"><a href="http://jhawk.co/ember-cli-password-strength" target="_blank">Ember-CLI-Password-Strength Demo</a></h2>
{{outlet}}
| <h2 id="title"><a href="http://jhawk.co/ember-cli-password-strength" target="_blank">Ember-CLI-Password-Strength Demo</a></h2>
<p>This demo is running v{{app-version}}</p>
{{outlet}}
| Add app version to demo | Add app version to demo
| Handlebars | mit | elwayman02/ember-cli-password-strength,elwayman02/ember-cli-password-strength |
3c820ebb006fd73525e68214073217114acbf8db | ember/app/components/nav-bar-search-form.hbs | ember/app/components/nav-bar-search-form.hbs | <form
action="/search"
local-class="form"
class="navbar-form navbar-left navbar-search visible-lg"
onsubmit={{action @onSearch this.searchTextService.text}}
...attributes
>
<div class="form-group">
<Input
@type="text"
@name="text"
@value={{this.searchTextService.text}}
placeholder={{t "search.search"}}
local-class="input"
/>
</div>
</form> | <form
action="/search"
local-class="form"
class="navbar-form navbar-left navbar-search visible-lg"
...attributes
{{on "submit" (prevent-default (fn @onSearch this.searchTextService.text))}}
>
<div class="form-group">
<Input
@type="text"
@name="text"
@value={{this.searchTextService.text}}
placeholder={{t "search.search"}}
local-class="input"
/>
</div>
</form> | Replace `onsubmit` to `on` modifier | NavBarSearchForm: Replace `onsubmit` to `on` modifier
| Handlebars | agpl-3.0 | skylines-project/skylines,skylines-project/skylines,skylines-project/skylines,skylines-project/skylines |
0e1cbc20d4a22b792c36d57294a6efe99cb61929 | generators/directive/test.js.hbs | generators/directive/test.js.hbs | describe('{{#lowercamelize}}{{name}}{{/lowercamelize}} directive', function() {
var $compile;
var scope;
beforeEach(function() {
module('app.directives');
inject(function($rootScope, _$compile_) {
scope = $rootScope.$new();
$compile = _$compile_;
});
});
});
| describe('{{#lowercamelize}}{{name}}{{/lowercamelize}} directive', function() {
var element;
var scope;
var template = '<div></div>';
beforeEach(function() {
module('app.directives');
inject(function($rootScope, $compile) {
scope = $rootScope.$new();
element = $compile(template)(scope);
scope.$digest();
});
});
});
| Add more code to the directive test generator | Add more code to the directive test generator
| Handlebars | mit | jupl/btc-angular |
230abb8532fb65eedfca9e2e8912988a9d700ec7 | app/templates/components/publish-package.hbs | app/templates/components/publish-package.hbs | <button class="btn build {{if isEnabled 'isEnabled'}}" {{action "handleClick"}}>
{{linkMessage}}
{{#if isBuilding}}{{fa-icon "circle-o-notch fa-spin"}}{{/if}}
{{#if isNotBuilding}}{{fa-icon "globe"}}{{/if}}
</button>
{{#if showDialog}}
<div class="modal-fog">
<div class="modal-frame">
<h5 class="modal-title">
Publish Package
</h5>
<div class="modal-body">
<div class="form-item">
{{#if missingName}}<p class="instructions alert">{{fa-icon "exclamation"}} Please, provide the name or company name.</p>{{/if}}
<label>Name or Company Name</label> {{input value=name placeholder="Enter a Name or Company Name"}}
</div>
<div class="form-item">
{{#if invalidEmail}}<p class="instructions alert">{{fa-icon "exclamation"}} Please, provide a valid E-mail address.</p>{{/if}}
<label>E-mail</label> {{input value=email placeholder="Enter a valid E-mail address"}}
</div>
<div class="form-item">
<button class="button" {{action "accept"}}>Accept</button>
<button class="button" {{action "close"}}>Cancel</button>
</div>
</div>
</div>
</div>
{{/if}}
{{yield}} | <button class="btn build {{if isEnabled 'isEnabled'}}" {{action "handleClick"}}>
{{linkMessage}}
{{#if isBuilding}}{{fa-icon "circle-o-notch fa-spin"}}{{/if}}
{{#if isNotBuilding}}{{fa-icon "globe"}}{{/if}}
</button>
{{#if showDialog}}
<div class="modal-fog">
<div class="modal-frame">
<h5 class="modal-title">
Publish Package
</h5>
<div class="modal-body">
<div class="form-item">
<label>Name or Company Name</label> {{input value=name placeholder="Enter a Name or Company Name"}}
</div>
{{#if missingName}}<p class="instructions alert">{{fa-icon "exclamation"}} Please, provide the name or company name.</p>{{/if}}
<div class="form-item">
<label>E-mail</label> {{input value=email placeholder="Enter a valid E-mail address"}}
</div>
{{#if invalidEmail}}<p class="instructions alert">{{fa-icon "exclamation"}} Please, provide a valid E-mail address.</p>{{/if}}
<div class="form-item">
<button class="button" {{action "accept"}}>Accept</button>
<button class="button" {{action "close"}}>Cancel</button>
</div>
</div>
</div>
</div>
{{/if}}
{{yield}} | Change order of error message in Publish Package popup | Change order of error message in Publish Package popup
| Handlebars | mit | manifoldjs/manifoldjs-site,manifoldjs/manifoldjs-site,manifoldjs/manifoldjs-site |
b266b16b6a26a96516700fd9bc35026babe13a0b | app/assets/javascripts/admin/templates/group.js.handlebars | app/assets/javascripts/admin/templates/group.js.handlebars | {{#if automatic}}
<h3>{{name}}</h3>
{{else}}
{{text-field value=name placeholderKey="admin.groups.name_placeholder"}}
{{/if}}
<div class="control-group">
<label class="control-label">{{i18n admin.groups.group_members}}</label>
<div class="controls">
{{user-selector usernames=usernames id="group-users" placeholderKey="admin.groups.selector_placeholder" tabindex="1" disabled=automatic}}
</div>
</div>
<div class="control-group">
<div class="controls">
{{input type="checkbox" checked=visible}} {{i18n groups.visible}}
</div>
</div>
<div class="control-group">
<label class="control-label">{{i18n groups.alias_levels.title}}</label>
<div class="controls">
{{combo-box valueAttribute="value" value=alias_level content=aliasLevelOptions}}
</div>
</div>
<div class='controls'>
<button {{action save}} {{bind-attr disabled="disableSave"}} class='btn'>{{i18n admin.customize.save}}</button>
{{#unless automatic}}
<a {{action destroy}} class='delete-link'>{{i18n admin.customize.delete}}</a>
{{/unless}}
</div>
| {{#if automatic}}
<h3>{{name}}</h3>
{{else}}
{{text-field value=name placeholderKey="admin.groups.name_placeholder"}}
{{/if}}
<div class="control-group">
<label class="control-label">{{i18n admin.groups.group_members}}</label>
<div class="controls">
{{user-selector usernames=usernames id="group-users" placeholderKey="admin.groups.selector_placeholder" tabindex="1" disabled=automatic}}
</div>
</div>
<div class="control-group">
<div class="controls">
{{input type="checkbox" checked=visible}} {{i18n groups.visible}}
</div>
</div>
<div class="control-group">
<label class="control-label">{{i18n groups.alias_levels.title}}</label>
<div class="controls">
{{combo-box valueAttribute="value" value=alias_level content=aliasLevelOptions}}
</div>
</div>
<div class='controls'>
<button {{action save}} {{bind-attr disabled="disableSave"}} class='btn'>{{i18n admin.customize.save}}</button>
{{#unless automatic}}
<button {{action destroy}} class='btn btn-danger'><i class="fa fa-trash-o"></i>{{i18n admin.customize.delete}}</button>
{{/unless}}
</div>
| Make style more consistent with rest of site | Make style more consistent with rest of site
| Handlebars | mit | natefinch/discourse,natefinch/discourse |
55edcb32025f1e140d13fb0a8c5239da33c1376c | views/general-file.hbs | views/general-file.hbs | {{> layout_start_document}}
<link rel="stylesheet" href="/public/css/general-file.css">
{{> layout_start_body}}
<main>
<header>
<h1>File contents</h1>
</header>
<section class="content-controls">
<button class="back-button call-to-action" onclick="window.history.back()"></button>
</section>
<p class="file-contents">
{{#newlines_to_breaks contents}}{{this}}{{/newlines_to_breaks}}
</p>
</main>
{{> layout_end}}
| {{> layout_start_document}}
<link rel="stylesheet" href="/public/css/general-file.css">
{{> layout_start_body}}
<main>
<header>
<h1>File contents</h1>
</header>
<section class="content-controls">
<button class="back-button call-to-action" onclick="window.history.back()"></button>
</section>
<section>
<p class="file-contents">
{{#newlines_to_breaks contents}}{{this}}{{/newlines_to_breaks}}
</p>
</section>
</main>
{{> layout_end}}
| Fix small screen layout for file which have not been parsed. | Fix small screen layout for file which have not been parsed.
| Handlebars | mit | oss-specs/specs,oss-specs/specs |
71319a84af627f7c290075e7096a402e543a29bd | src/sunstone/public/app/tabs/hosts-tab/panels/pci/html.hbs | src/sunstone/public/app/tabs/hosts-tab/panels/pci/html.hbs | {{! -------------------------------------------------------------------------- }}
{{! Copyright 2002-2015, OpenNebula Project, OpenNebula Systems }}
{{! }}
{{! Licensed under the Apache License, Version 2.0 (the "License"); you may }}
{{! not use this file except in compliance with the License. You may obtain }}
{{! a copy of the License at }}
{{! }}
{{! http://www.apache.org/licenses/LICENSE-2.0 }}
{{! }}
{{! Unless required by applicable law or agreed to in writing, software }}
{{! distributed under the License is distributed on an "AS IS" BASIS, }}
{{! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. }}
{{! See the License for the specific language governing permissions and }}
{{! limitations under the License. }}
{{! -------------------------------------------------------------------------- }}
<div class="row">
<div class="large-12 columns">
<table id="datatable_pci_{{panelId}}" class="dataTable">
<thead>
<tr>
<th>{{tr "VM"}}</th>
<th>{{tr "PCI Address"}}</th>
<th>{{tr "Type"}}</th>
<th>{{tr "Name"}}</th>
</tr>
</thead>
<tbody>
{{#each pcis}}
<tr>
<td>{{VMID}}</td>
<td>{{SHORT_ADDRESS}}</td>
<td>{{TYPE}}</td>
<td>{{DEVICE_NAME}}</td>
</tr>
{{/each}}
</tbody>
</table>
</div>
</div>
| {{! -------------------------------------------------------------------------- }}
{{! Copyright 2002-2015, OpenNebula Project, OpenNebula Systems }}
{{! }}
{{! Licensed under the Apache License, Version 2.0 (the "License"); you may }}
{{! not use this file except in compliance with the License. You may obtain }}
{{! a copy of the License at }}
{{! }}
{{! http://www.apache.org/licenses/LICENSE-2.0 }}
{{! }}
{{! Unless required by applicable law or agreed to in writing, software }}
{{! distributed under the License is distributed on an "AS IS" BASIS, }}
{{! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. }}
{{! See the License for the specific language governing permissions and }}
{{! limitations under the License. }}
{{! -------------------------------------------------------------------------- }}
<div class="row">
<div class="large-12 columns">
<table id="datatable_pci_{{panelId}}" class="dataTable no-hover">
<thead>
<tr>
<th>{{tr "VM"}}</th>
<th>{{tr "PCI Address"}}</th>
<th>{{tr "Type"}}</th>
<th>{{tr "Name"}}</th>
</tr>
</thead>
<tbody>
{{#each pcis}}
<tr>
<td>{{VMID}}</td>
<td>{{SHORT_ADDRESS}}</td>
<td>{{TYPE}}</td>
<td>{{DEVICE_NAME}}</td>
</tr>
{{/each}}
</tbody>
</table>
</div>
</div>
| Add no-hover to host pci table | Add no-hover to host pci table
(cherry picked from commit c2364213ab666e7a3006b331fdc8c60b8273afc8)
| Handlebars | apache-2.0 | ohamada/one,juanmont/one,OpenNebula/one,unistra/one,OpenNebula/one,unistra/one,atodorov-storpool/one,alvarosimon/one,baby-gnu/one,unistra/one,juanmont/one,baby-gnu/one,hsanjuan/one,unistra/one,goberle/one,baby-gnu/one,baby-gnu/one,juanmont/one,unistra/one,goberle/one,goberle/one,goberle/one,atodorov-storpool/one,OpenNebula/one,ohamada/one,hsanjuan/one,atodorov-storpool/one,abelCoronado93/one,unistra/one,atodorov-storpool/one,unistra/one,alvarosimon/one,ohamada/one,juanmont/one,atodorov-storpool/one,OpenNebula/one,atodorov-storpool/one,unistra/one,hsanjuan/one,ohamada/one,ohamada/one,juanmont/one,OpenNebula/one,alvarosimon/one,alvarosimon/one,abelCoronado93/one,ohamada/one,OpenNebula/one,abelCoronado93/one,OpenNebula/one,ohamada/one,juanmont/one,hsanjuan/one,juanmont/one,goberle/one,OpenNebula/one,abelCoronado93/one,alvarosimon/one,baby-gnu/one,juanmont/one,baby-gnu/one,abelCoronado93/one,baby-gnu/one,atodorov-storpool/one,hsanjuan/one,atodorov-storpool/one,alvarosimon/one,goberle/one,juanmont/one,abelCoronado93/one,goberle/one,OpenNebula/one,alvarosimon/one,goberle/one,hsanjuan/one,hsanjuan/one,abelCoronado93/one,hsanjuan/one,ohamada/one,abelCoronado93/one,baby-gnu/one,atodorov-storpool/one,alvarosimon/one |
f010b23eeb1efbf52dcf313c68f1c3516c766d57 | app/templates/components/identification-form.hbs | app/templates/components/identification-form.hbs | <form id="identification-form">
<div id="firstname" class="form-group">
<label class="control-label" for="firstname_input">Prénom</label>
{{input id="firstname_input" class="form-control" type="text" placeholder="Benjamin" autocomplete="on"}}
</div>
<div id="lastname" class="form-group">
<label class="control-label" for="lastname_input">Nom</label>
{{input id="lastname_input" class="form-control" type="text" placeholder="Marteau" autocomplete="on"}}
</div>
<div id="email" class="form-group">
<label class="control-label" for="email_input">Email</label>
{{input id="email_input" class="form-control" type="email" placeholder="benjamin.marteau@wanadoo.fr" autocomplete="on"}}
</div>
<div class="identification-form-actions pull-right">
<button {{action "identify"}} class="button button-primary">
Identifiez-vous
</button>
</div>
</form>
| <form id="identification-form">
<div id="firstname" class="form-group">
<label class="control-label" for="firstname_input">Prénom</label>
{{input id="firstname_input" class="form-control" type="text" placeholder="Jon" autocomplete="on"}}
</div>
<div id="lastname" class="form-group">
<label class="control-label" for="lastname_input">Nom</label>
{{input id="lastname_input" class="form-control" type="text" placeholder="Snow" autocomplete="on"}}
</div>
<div id="email" class="form-group">
<label class="control-label" for="email_input">Email</label>
{{input id="email_input" class="form-control" type="email" placeholder="jon.snow@winterfell.got" autocomplete="on"}}
</div>
<div class="identification-form-actions pull-right">
<button {{action "identify"}} class="button button-primary">
Identifiez-vous
</button>
</div>
</form>
| Change subscription form placeholders on index page | Change subscription form placeholders on index page
| Handlebars | agpl-3.0 | sgmap/pix,sgmap/pix,sgmap/pix,sgmap/pix |
4f542673d7aa4e6a5f8032eb1bd1b6eca40efc3d | src/main/web/templates/handlebars/partials/local-box.handlebars | src/main/web/templates/handlebars/partials/local-box.handlebars | <div class="tiles__item tiles__item--image-type-fixed-30-rows flush clickable-wrap print--hide">
<h3 class="tiles__title tiles__title-h2"><a href="/about/localstatistics">{{labels.local-stats-header}}<span class="image-holder"><img src="/img/t1-local.png" alt="" class="no-border"></span></a></h3>
<p class="tiles__content">{{labels.local-stats-text}}</p>
</div>
| <div class="tiles__item tiles__item--image-type-fixed-30-rows flush clickable-wrap print--hide">
<h3 class="tiles__title tiles__title-h2"><a href="/about/localstatistics">{{labels.local-stats-header}}<span class="image-holder"><img src="/img/t1-local.png" alt="" class="no-border"></span></a></h3>
<div class="tiles__content">
<p class="flush">{{labels.local-stats-text}}</p>
</div>
</div> | Update mark up to get content on grid | Update mark up to get content on grid
| Handlebars | mit | ONSdigital/babbage,ONSdigital/babbage,ONSdigital/babbage,ONSdigital/babbage |
5693868327d46071e1e3697589e72b9de6206143 | app/assets/javascripts/rglossa/templates/application.hbs | app/assets/javascripts/rglossa/templates/application.hbs | <!-- Begin navbar ================================================== -->
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<span class="brand">Glossa</span>
<!--
<ul class="nav">
<li><a href="#">My results</a></li>
</ul>
-->
<ul class="nav pull-right">
<li><a href="#">Log out</a></li>
</ul>
</div>
</div>
</div>
<!-- End navbar ================================================== -->
{{outlet}} | <!-- Begin navbar ================================================== -->
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<span class="brand">Glossa</span>
<!--
<ul class="nav">
<li><a href="#">My results</a></li>
</ul>
<ul class="nav pull-right">
<li><a href="#">Log out</a></li>
</ul>
-->
</div>
</div>
</div>
<!-- End navbar ================================================== -->
{{outlet}} | Remove logout link for now | Remove logout link for now
| Handlebars | mit | textlab/glossa,textlab/rglossa,textlab/glossa,textlab/rglossa,textlab/rglossa,textlab/glossa,textlab/rglossa,textlab/rglossa,textlab/glossa,textlab/glossa |
2b9ed7016865f29f54bd3b3d40c1a2812f4a5992 | js/app/templates/index.hbs | js/app/templates/index.hbs | <div id="index">
<nav>
<h3>Link-sf</h3>
</nav>
<h3 class="title">What are you looking for?</h3>
<span>Service</span>
<ul class="categories">
<li><button class="btn" data-category="housing"><i class="icon-briefcase"></i>Housing</button></li>
<li><button class="btn" data-category="food"><i class="icon-shopping-cart"></i>Food</button></li>
<li><button class="btn" data-category="medical"><i class="icon-heart"></i>Medical</button></li>
<li><button class="btn" data-category="hygiene"><i class="icon-tint"></i>Hygiene</button></li>
<li><button class="btn" data-category="technology"><i class="icon-hdd"></i>Technology</button></li>
</ul>
<p class="search"><button class="btn btn-info">Search</button></p>
</div>
| <div id="index">
<nav>
<h3>Link-sf</h3>
</nav>
<h3 class="title">What are you looking for?</h3>
<span>Service</span>
<ul class="categories">
<li><button class="btn" data-category="housing"><i class="icon-briefcase"></i>Housing</button></li>
<li><button class="btn" data-category="food"><i class="icon-shopping-cart"></i>Food</button></li>
<li><button class="btn" data-category="medical"><i class="icon-heart"></i>Medical</button></li>
<li><button class="btn" data-category="hygiene"><i class="icon-tint"></i>Hygiene</button></li>
<li><button class="btn" data-category="technology"><i class="icon-hdd"></i>Technology</button></li>
</ul>
<p class="search" style="display: none"><button class="btn btn-info">Search</button></p>
</div>
| Hide search button for now | Hide search button for now
| Handlebars | apache-2.0 | ISMAELMARTINEZ/linkuk,zendesk/copenhelp,sfbrigade/linksf,zendesk/linksf,lcomito/linksf,sfbrigade/linksf,lcomito/linksf,ISMAELMARTINEZ/linkuk,sfbrigade/linksf,lcomito/linksf,zendesk/linksf,zendesk/copenhelp,zendesk/copenhelp |
a6cf526ef5b0ba28e1403986fc6885719f4f6ab9 | app/content/examples/index.hbs | app/content/examples/index.hbs | ---
layout: examples.hbs
short_title: Layout Sticky Footer
title: Layout Sticky Footer
summary: Example of sticky footer layout
short_summary: Example of sticky footer layout
---
<h1>Examples</h1>
<ul>
<li><a href="/examples/sticky-footer">Sticky Footer</a></li>
<li><a href="/examples/copyright">Copyright</a></li>
<li><a href="/examples/lazy-load">Lazy Load</a></li>
<li><a href="/examples/aspect-ratio">Aspect ratio</a></li>
<li><a href="/examples/share">Share</a></li>
<li><a href="/examples/follow">Follow</a></li>
</ul> | ---
layout: examples.hbs
short_title: Examples
title: Examples
summary: Examples
short_summary: Examples
---
<h1>Examples</h1>
<ul>
<li><a href="/examples/sticky-footer">Sticky Footer</a></li>
<li><a href="/examples/copyright">Copyright</a></li>
<li><a href="/examples/lazy-load">Lazy Load</a></li>
<li><a href="/examples/aspect-ratio">Aspect ratio</a></li>
<li><a href="/examples/share">Share</a></li>
<li><a href="/examples/follow">Follow</a></li>
</ul> | Fix yaml data on examples page | Fix yaml data on examples page
| Handlebars | mit | oksana-khristenko/assemble-starter,oksana-khristenko/assemble-starter |
b8813e5f70b4560e77a3b214e1b97de86871c8e0 | src/main/web/templates/handlebars/list/partials/az-letter.handlebars | src/main/web/templates/handlebars/list/partials/az-letter.handlebars | <input class="filters__a-z-input" name="az" type="radio" id="radio-{{letter}}" value="{{letter}}" {{#if (eq (lowercase parameters.az.0) letter)}}checked{{/if}}{{#unless (get counts.docCounts letter)}} disabled{{/unless}}><label class="filters__a-z-label{{#if (eq (lowercase parameters.az.0) letter)}} filters__a-z-label--active{{/if}} {{#unless (get counts.docCounts letter)}} filters__a-z-label--disabled{{/unless}}" for="radio-{{letter}}">{{capitalize letter}}</label>
| <input class="filters__a-z-input js-auto-submit__input" name="az" type="radio" id="radio-{{letter}}" value="{{letter}}" {{#if (eq (lowercase parameters.az.0) letter)}}checked{{/if}}{{#unless (get counts.docCounts letter)}} disabled{{/unless}}><label class="filters__a-z-label{{#if (eq (lowercase parameters.az.0) letter)}} filters__a-z-label--active{{/if}} {{#unless (get counts.docCounts letter)}} filters__a-z-label--disabled{{/unless}}" for="radio-{{letter}}">{{capitalize letter}}</label>
| Add auto-subimit class to a-z inputs | Add auto-subimit class to a-z inputs
| Handlebars | mit | ONSdigital/babbage,ONSdigital/babbage,ONSdigital/babbage,ONSdigital/babbage |
46e5a4ec640502a4baf9789177d18082a994b7a4 | templates/html.hbs | templates/html.hbs | {{#each this~}}
<h2>{{org}}</h2>
{{~#each repos}}
<h3>{{name}} <em>({{prs.length}})</em><h3>
<ul>
{{~#each prs}}
<li>
{{#if assignee~}}
<a href="{{userUrl}}/{{assignee}}">{{assignee}}</a>
{{~else~}}
<span class="unassigned">Unassigned</span>
{{~/if}}
/
<a href="{{userUrl}}/{{user}}">{{user}}</a>:
<a href="{{url}}">{{number}} - "{{title}}"</a>
</li>
{{~/each}}
</ul>
{{/each}}
{{/each~}}
| {{#each this~}}
<h2>{{org}}</h2>
{{~#each repos}}
<h3>{{name}} <em>({{prs.length}})</em><h3>
<table class="pure-table">
<thead>
<tr>
<th>Reviewer</th>
<th>Coder</th>
<th>Number</th>
<th>Title</th>
</tr>
</thead>
<tbody>
{{~#each prs}}
<tr>
<td>{{#if assignee~}}
<a href="{{userUrl}}/{{assignee}}">{{assignee}}</a>
{{~else~}}
<span class="unassigned">Unassigned</span>
{{~/if}}</td>
<td><a href="{{userUrl}}/{{user}}">{{user}}</a></td>
<td><a href="{{url}}">{{number}}</a></td>
<td><a href="{{url}}">"{{title}}"</a></td>
</tr>
{{~/each}}
</tbody>
</table>
{{/each}}
{{/each~}}
| Switch to table (with a little pure love). | Switch to table (with a little pure love).
| Handlebars | mit | tammyd/pull-report,tammyd/pull-report,FormidableLabs/pull-report |
078ed17a45752dac84f9a8422b988d811512b9ba | app/components/search-result/template.hbs | app/components/search-result/template.hbs | <h4>
<a href="">
{{obj.title}}
</a>
</h4>
<div class="row">
<div class="col-md-7">
<span class="pull-left" style="text-align: left">
{{#each obj.contributors as |contrib index|}}
{{#if index}}
-
{{/if}}
<a {{action 'addFilter' contrib.familyName}}>
{{contrib.familyName}}
</a>
{{/each}}
</span>
</div>
<div class="col-md-5">
<span class="pull-right" style="text-align: right">
{{#each obj.tags as |tag|}}
<span class='tag'>
{{tag}}
</span>
{{/each}}
</span>
</div>
</div><br>
<div>
{{abbreviation}}
</div><br>
<div>
{{#link-to "curate.work" obj.id}}Curate{{/link-to}}, <a href="http://localhost:9200/share/document/{{obj.id}}">Data</a>
</div>
<hr>
| <h4>
<a href="">
{{obj.title}}
</a>
</h4>
<div class="row">
<div class="col-md-7">
<span class="pull-left" style="text-align: left">
{{#each obj.contributors as |contrib index|}}
{{#if index}}
-
{{/if}}
<a {{action 'addFilter' contrib.familyName}}>
{{contrib.familyName}}
</a>
{{/each}}
</span>
</div>
<div class="col-md-5">
<span class="pull-right" style="text-align: right">
{{#each obj.tags as |tag|}}
<span class='tag'>
{{tag}}
</span>
{{/each}}
</span>
</div>
</div><br>
<div>
{{abbreviation}}
</div><br>
<div>
{{#link-to "curate.work" obj.type obj.id}}Curate{{/link-to}} | <a href="http://localhost:9200/share/document/{{obj.id}}">Data</a>
</div>
<hr>
| Add object type to curate works link | Add object type to curate works link
| Handlebars | apache-2.0 | CenterForOpenScience/ember-share,CenterForOpenScience/ember-share,aaxelb/ember-share,chrisseto/ember-share,chrisseto/ember-share,aaxelb/ember-share |
1a829a238283f59adfd314ee4d11f60818ca8d92 | src/templates/pages/index.hbs | src/templates/pages/index.hbs | ---
title: "Awesome Sketch Plugins"
---
{{#each plugins }}
<section class="row clearfix sketch-plugin">
{{#if image compare=""}}
<div class="column third">
<img src="{{image}}" alt="{{name}}">
</div>
<div class="column two-third">
<h2>{{name}}<span class="meta"> by <a href="{{author.url}}">{{author.name}}</a><span class="divider">→</span><a href="{{url}}">visit website</a></span></h2>
<p class="short-description">{{overview}}</p>
<p class="long-description">{{description}}</p>
</p>
</div>
{{else}}
<div class="column full">
<h2>{{name}}<span class="meta"> by <a href="{{author.url}}">{{author.name}}</a><span class="divider">→</span><a href="{{url}}">visit website</a></span></h2>
<p class="short-description">{{overview}}</p>
<p class="long-description">{{description}}</p>
</p>
</div>
{{/if}}
</section>
{{/each}}
| ---
title: "Awesome Sketch Plugins"
---
{{#each plugins }}
<section class="row clearfix sketch-plugin">
{{#if image compare=""}}
<div class="column third">
<img src="{{image}}" alt="{{name}}">
</div>
<div class="column two-thirds">
<h2>{{name}}<span class="meta"> by <a href="{{author.url}}">{{author.name}}</a><span class="divider">→</span><a href="{{url}}">visit website</a></span></h2>
<p class="short-description">{{overview}}</p>
<p class="long-description">{{description}}</p>
</p>
</div>
{{else}}
<div class="column full">
<h2>{{name}}<span class="meta"> by <a href="{{author.url}}">{{author.name}}</a><span class="divider">→</span><a href="{{url}}">visit website</a></span></h2>
<p class="short-description">{{overview}}</p>
<p class="long-description">{{description}}</p>
</p>
</div>
{{/if}}
</section>
{{/each}}
| Fix typo and the grid. Yeaaaha! | Fix typo and the grid. Yeaaaha!
| Handlebars | mit | florianbuerger/awesome-sket.ch,florianbuerger/awesome-sket.ch,florianbuerger/awesome-sket.ch,florianbuerger/awesome-sket.ch |
0f0f4bb79894ec27f3d37dfcab1c10c2949b9f00 | assets/scripts/app/templates/repos/list.hbs | assets/scripts/app/templates/repos/list.hbs | <div id="search_box">
{{view Ember.TextField valueBinding="controller.search"}}
</div>
{{view Travis.ReposListTabsView}}
<div class="tab">
{{#collection Travis.ReposListView contentBinding="this"}}
{{#with view.repo}}
<div class="slug-and-status">
<span class="status"></span>
{{#if slug}}
{{#linkTo repo this class="slug"}}{{slug}}{{/linkTo}}
{{/if}}
</div>
{{#with lastBuildHash}}
{{#if repo.slug}}
{{#linkTo build repo id class="last_build"}}{{number}}{{/linkTo}}
{{/if}}
{{/with}}
<p class="summary">
<span class="duration_label">{{t repositories.duration}}:</span>
<abbr class="duration" {{bindAttr title="lastBuildStartedAt"}}>{{formatDuration lastBuildDuration}}</abbr>,
<span class="finished_at_label">{{t repositories.finished_at}}:</span>
<abbr class="finished_at timeago" {{bindAttr title="lastBuildFinishedAt"}}>{{formatTime lastBuildFinishedAt}}</abbr>
</p>
<div class="indicator"><span></span></div>
{{#if description}}
<div class="info">
<p class="description">{{description}}</p>
</div>
{{/if}}
{{/with}}
{{else}}
<p class="empty"></p>
{{/collection}}
</div>
| <div id="search_box">
{{view Ember.TextField valueBinding="controller.search" placeholder="Search all repositories"}}
</div>
{{view Travis.ReposListTabsView}}
<div class="tab">
{{#collection Travis.ReposListView contentBinding="this"}}
{{#with view.repo}}
<div class="slug-and-status">
<span class="status"></span>
{{#if slug}}
{{#linkTo repo this class="slug"}}{{slug}}{{/linkTo}}
{{/if}}
</div>
{{#with lastBuildHash}}
{{#if repo.slug}}
{{#linkTo build repo id class="last_build"}}{{number}}{{/linkTo}}
{{/if}}
{{/with}}
<p class="summary">
<span class="duration_label">{{t repositories.duration}}:</span>
<abbr class="duration" {{bindAttr title="lastBuildStartedAt"}}>{{formatDuration lastBuildDuration}}</abbr>,
<span class="finished_at_label">{{t repositories.finished_at}}:</span>
<abbr class="finished_at timeago" {{bindAttr title="lastBuildFinishedAt"}}>{{formatTime lastBuildFinishedAt}}</abbr>
</p>
<div class="indicator"><span></span></div>
{{#if description}}
<div class="info">
<p class="description">{{description}}</p>
</div>
{{/if}}
{{/with}}
{{else}}
<p class="empty"></p>
{{/collection}}
</div>
| Add placeholder for search input | Add placeholder for search input
| Handlebars | mit | fotinakis/travis-web,mjlambert/travis-web,Tiger66639/travis-web,fotinakis/travis-web,2947721120/travis-web,jlrigau/travis-web,mjlambert/travis-web,fauxton/travis-web,travis-ci/travis-web,2947721120/travis-web,Tiger66639/travis-web,jlrigau/travis-web,fauxton/travis-web,mjlambert/travis-web,travis-ci/travis-web,fotinakis/travis-web,Tiger66639/travis-web,jlrigau/travis-web,fauxton/travis-web,2947721120/travis-web,2947721120/travis-web,travis-ci/travis-web,fotinakis/travis-web,fauxton/travis-web,mjlambert/travis-web,Tiger66639/travis-web,travis-ci/travis-web,jlrigau/travis-web |
56d7748b575446c7c942e8a4359a210793dbf5a6 | internals/generators/route/routeWithReducer.hbs | internals/generators/route/routeWithReducer.hbs | {
path: '{{ path }}',
name: '{{ camelCase component }}',
getComponent(nextState, cb) {
const importModules = Promise.all([
System.import('containers/{{ properCase component }}/reducer'),
System.import('containers/{{ properCase component }}/sagas'),
System.import('containers/{{ properCase component }}'),
]);
const renderRoute = loadModule(cb);
importModules.then(([reducer, sagas, component]) => {
injectAsyncReducer(store, '{{ camelCase component }}', reducer.default);
injectAsyncSagas(sagas.default);
renderRoute(component);
});
importModules.catch(errorLoading);
},
},$1
| {
path: '{{ path }}',
name: '{{ camelCase component }}',
getComponent(nextState, cb) {
const importModules = Promise.all([
System.import('containers/{{ properCase component }}/reducer'),
System.import('containers/{{ properCase component }}/sagas'),
System.import('containers/{{ properCase component }}'),
]);
const renderRoute = loadModule(cb);
importModules.then(([reducer, sagas, component]) => {
injectReducer(store, '{{ camelCase component }}', reducer.default);
injectSagas(sagas.default);
renderRoute(component);
});
importModules.catch(errorLoading);
},
},$1
| Fix injector method names in route generator | Fix injector method names in route generator | Handlebars | mit | perry-ugroop/ugroop-react-dup2,AnhHT/react-boilerplate,abasalilov/react-boilerplate,react-boilerplate/react-boilerplate,s0enke/react-boilerplate,Dmitry-N-Medvedev/motor-collection,Jan-Jan/react-hackathon-boilerplate,StrikeForceZero/react-typescript-boilerplate,dbrelovsky/react-boilerplate,rlagman/raphthelagman,mxstbr/react-boilerplate,Dattaya/react-boilerplate-object,Dmitry-N-Medvedev/motor-collection,absortium/frontend,pauleonardo/demo-trans,TheTopazWombat/levt-2,Demonslyr/Donut.WFE.Customer,mmaedel/react-boilerplate,Jan-Jan/react-hackathon-boilerplate,JonathanMerklin/react-boilerplate,w01fgang/react-boilerplate,tomazy/react-boilerplate,dbrelovsky/react-boilerplate,ipselon/react-boilerplate-clone,kaizen7-nz/gold-star-chart,s0enke/react-boilerplate,blockfs/frontend-react,likesalmon/likesalmon-react-boilerplate,gihrig/react-boilerplate-logic,shiftunion/bot-a-tron,be-oi/beoi-training-client,jasoncyu/always-be-bulking,Demonslyr/Donut.WFE.Customer,samit4me/react-boilerplate,tomazy/react-boilerplate,gihrig/react-boilerplate-logic,KarandikarMihir/react-boilerplate,Dmitry-N-Medvedev/motor-collection,gtct/wallet.eine.com,Proxiweb/react-boilerplate,gtct/wallet.eine.com,gihrig/react-boilerplate,codermango/BetCalculator,haxorbit/chiron,absortium/frontend,haithemT/app-test,Proxiweb/react-boilerplate,mikejong0815/Temp,gtct/wallet.eine.com,jasoncyu/always-be-bulking,be-oi/beoi-training-client,StrikeForceZero/react-typescript-boilerplate,haithemT/app-test,rlagman/raphthelagman,romanvieito/ball-simpler,abasalilov/react-boilerplate,haxorbit/chiron,mmaedel/react-boilerplate,gtct/wallet.eine.com,likesalmon/likesalmon-react-boilerplate,w01fgang/react-boilerplate,Dmitry-N-Medvedev/motor-collection,romanvieito/ball-simpler,shiftunion/bot-a-tron,s0enke/react-boilerplate,Proxiweb/react-boilerplate,kaizen7-nz/gold-star-chart,kossel/react-boilerplate,ipselon/react-boilerplate-clone,AnhHT/react-boilerplate,perry-ugroop/ugroop-react-dup2,mikejong0815/Temp,codermango/BetCalculator,react-boilerplate/react-boilerplate,gihrig/react-boilerplate,SilentCicero/react-boilerplate,blockfs/frontend-react,StrikeForceZero/react-typescript-boilerplate,mxstbr/react-boilerplate,kossel/react-boilerplate,chaintng/react-boilerplate,chaintng/react-boilerplate,SilentCicero/react-boilerplate,pauleonardo/demo-trans,samit4me/react-boilerplate,TheTopazWombat/levt-2,JonathanMerklin/react-boilerplate,Dattaya/react-boilerplate-object,KarandikarMihir/react-boilerplate |
b6748bf7ab9d0d7a64ac6167381a424bfc38aa11 | app/templates/notes/note.hbs | app/templates/notes/note.hbs | <div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">
{{title}}
{{#link-to 'notes.edit' content class="btn btn-default btn-xs pull-right"}}
<span class="glyphicon glyphicon-pencil"></span>
{{/link-to}}
</h3>
</div>
<div class="panel-body">
{{to-marked content.content}}
</div>
<div class="panel-footer">{{tag_list}}</div>
</div> | <div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">
{{title}}
{{#link-to 'notes.edit' content class="btn btn-default btn-xs pull-right"}}
<span class="glyphicon glyphicon-pencil"></span>
{{/link-to}}
</h3>
</div>
<div class="panel-body">
{{to-marked content.content}}
</div>
<div class="panel-footer">
{{#each tag in tag_list}}
<span class="badge">
{{tag}}
</span>
{{/each}}
</div>
</div> | Use badges to display tags on show page | Use badges to display tags on show page
| Handlebars | mit | corsen2000/noted-client |
fd4966c8f2d054d0f372bcec4b6485a339d1e4fd | app/templates/show.hbs | app/templates/show.hbs | <div class="show-page">
<div class="row">
<div class="col-xs-12">
<h2 class="show-page-header">{{show.cgTitle}}</h2>
</div>
</div>
<div class="show-player clearfix">
<div class="col-sm-6 col-lg-8 u-no-padding">
<div class="embed-responsive embed-responsive-16by9">
{{#if show.vods.firstObject.isReady}}
<div class="embed-responsive embed-responsive-16by9">
<video
src={{show.vods.firstObject.url}}
poster={{show.thumbnail}}
class="embed-responsive-item" controls>
</video>
</div>
{{else}}
{{show-thumbnail show=show quality='Large' class="img-responsive"}}
{{/if}}
</div>
</div>
<div class="col-sm-6 col-lg-4 u-no-padding">
<div class="additional-info u-truncate-text">
{{show-details show=show producer=producer reels=reels runs=runs}}
</div>
</div>
</div>
</div>
| <div class="show-page">
<div class="row">
<div class="col-xs-12">
<h2 class="show-page-header">{{show.cgTitle}}</h2>
</div>
</div>
<div class="show-player clearfix">
<div class="col-sm-6 col-lg-8 u-no-padding">
<div class="embed-responsive embed-responsive-16by9">
{{#if show.vods.firstObject.isReady}}
<div class="embed-responsive embed-responsive-16by9">
{{{show.vods.firstObject.embedCode}}}
</div>
{{else}}
{{show-thumbnail show=show quality='Large' class="img-responsive"}}
{{/if}}
</div>
</div>
<div class="col-sm-6 col-lg-4 u-no-padding">
<div class="additional-info u-truncate-text">
{{show-details show=show producer=producer reels=reels runs=runs}}
</div>
</div>
</div>
</div>
| Use embedCode and not video tag | Use embedCode and not video tag
This has the issue of no poster support since we don't support that in our player. I think this should be blocked from merging until we add poster support to the videojs player in Cablecast
| Handlebars | mit | trms/cablecast-public-site,trms/cablecast-public-site |
8d822801259caffdb5ad86e8d14fa77b1f0edf96 | layouts/_pattern-library.hbs | layouts/_pattern-library.hbs | <!DOCTYPE html>
<html>
<head>
<link href="{{assets}}/css/{{cssFileName}}" rel="stylesheet" />
<link href="{{themeassets}}/css/patternpack-theme.css" rel="stylesheet" />
<link href="{{themeassets}}/css/github.css" rel="stylesheet" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{title}}</title>
</head>
<body>
<div id="libraryContainer" class="pp-container">
<header class="pp-header">
<a href="/">
<img src="{{logo}}" class="pp-header__logo">
</a>
<div id="menuToggle" class="pp-menu-toggle">
<div class="pp-menu-toggle__hamburger">Menu</div>
</div>
</header>
<div id="libraryContent" class="pp-content">
<div class="markdown__body">
{{#markdown}}
{{> body }}
{{/markdown}}
</div>
</div>
<div id="menuOverlay" class="pp-open-overlay"></div>
</div>
{{> _sidebar}}
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.6/highlight.min.js"></script>
<script src="{{themeassets}}/js/PatternPack.Global.Navigation.js"></script>
</body>
</html>
| <!DOCTYPE html>
<html>
<head>
<link href="{{themeassets}}/css/patternpack-theme.css" rel="stylesheet" />
<link href="{{themeassets}}/css/github.css" rel="stylesheet" />
<link href="{{assets}}/css/{{cssFileName}}" rel="stylesheet" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{title}}</title>
</head>
<body>
<div id="libraryContainer" class="pp-container">
<header class="pp-header">
<a href="/">
<img src="{{logo}}" class="pp-header__logo">
</a>
<div id="menuToggle" class="pp-menu-toggle">
<div class="pp-menu-toggle__hamburger">Menu</div>
</div>
</header>
<div id="libraryContent" class="pp-content">
<div class="markdown__body">
{{#markdown}}
{{> body }}
{{/markdown}}
</div>
</div>
<div id="menuOverlay" class="pp-open-overlay"></div>
</div>
{{> _sidebar}}
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.6/highlight.min.js"></script>
<script src="{{themeassets}}/js/PatternPack.Global.Navigation.js"></script>
</body>
</html>
| Move order of custom project CSS so it overrides the theme | Move order of custom project CSS so it overrides the theme
| Handlebars | mit | patternpack/patternpack-example-theme,patternpack/patternpack-example-theme |
75650df157e7783ebc894deda345a6179a0ec3e6 | app/templates/application.hbs | app/templates/application.hbs | {{#if theme.isProvider}}
{{title (concat theme.provider.name ' Preprints') separator=' | '}}
{{#if theme.stylesheet}}
<style>
@import url('{{theme.stylesheet}}');
</style>
{{/if}}
{{preprint-navbar-branded model=theme.provider}}
{{else}}
{{title 'OSF Preprints' separator=' | '}}
{{new-osf-navbar signupUrl=theme.signupUrl loginAction=(action 'login') currentService='PREPRINTS'}}
{{/if}}
<div class="preprints-body">
{{outlet}}
</div>
{{#if theme.isProvider}}
{{preprint-footer-branded model=theme.provider}}
{{else}}
{{osf-footer}}
{{osf-copyright class='text-center'}}
{{osf-mode-footer}}
{{/if}} | {{#if theme.isProvider}}
{{title (concat theme.provider.name ' Preprints') separator=' | '}}
{{#if theme.stylesheet}}
<style>
@import url('{{theme.stylesheet}}');
</style>
{{/if}}
{{preprint-navbar-branded model=theme.provider}}
{{else}}
{{title 'OSF Preprints' separator=' | '}}
{{osf-navbar signupUrl=theme.signupUrl loginAction=(action 'login') currentService='PREPRINTS'}}
{{/if}}
<div class="preprints-body">
{{outlet}}
</div>
{{#if theme.isProvider}}
{{preprint-footer-branded model=theme.provider}}
{{else}}
{{osf-footer}}
{{osf-copyright class='text-center'}}
{{osf-mode-footer}}
{{/if}} | Use osf-navbar instead of new-osf-navbar. | Use osf-navbar instead of new-osf-navbar.
| Handlebars | apache-2.0 | laurenrevere/ember-preprints,baylee-d/ember-preprints,CenterForOpenScience/ember-preprints,baylee-d/ember-preprints,CenterForOpenScience/ember-preprints,laurenrevere/ember-preprints |
f2312f49ec119b9c24680855b217ae246ca601db | app/templates/components/ember-youtube.hbs | app/templates/components/ember-youtube.hbs | <div id="EmberYoutube-player"></div>
{{#if showControls}}
<menu class="EmberYoutube-controls">
<button {{action 'togglePlay'}}>{{#if isPlaying}}Pause{{else}}Play{{/if}}</button>
<button {{action 'toggleVolume'}}>{{#if isMuted}}Unmute{{else}}Mute{{/if}}</button>
</menu>
{{/if}}
{{#if showTime}}
<p class="EmberYoutube-time">
{{currentTimeFormatted}}/{{durationFormatted}}
</p>
{{/if}}
{{#if showProgress}}
<p class="EmberYoutube-progress">
<progress {{bind-attr value=currentTimeValue max=durationValue}}></progress>
</p>
{{/if}}
{{#if showDebug}}
<p class="EmberYoutube-debug"><code>
ytid: {{ytid}}<br>
state: {{playerState}}<br>
isMuted: {{isMuted}}<br>
isPlaying: {{isPlaying}}<br>
</code></p>
{{/if}}
| <div id="EmberYoutube-player"></div>
<div class="EmberYoutube-controls">
{{#if showControls}}
<menu class="EmberYoutube-controls">
<button {{action 'togglePlay'}}>{{#if isPlaying}}Pause{{else}}Play{{/if}}</button>
<button {{action 'toggleVolume'}}>{{#if isMuted}}Unmute{{else}}Mute{{/if}}</button>
</menu>
{{/if}}
{{#if showTime}}
<p class="EmberYoutube-time">
{{currentTimeFormatted}}/{{durationFormatted}}
</p>
{{/if}}
{{#if showProgress}}
<p class="EmberYoutube-progress">
<progress {{bind-attr value=currentTimeValue max=durationValue}}></progress>
</p>
{{/if}}
{{#if showDebug}}
<p class="EmberYoutube-debug"><code>
ytid: {{ytid}}<br>
state: {{playerState}}<br>
isMuted: {{isMuted}}<br>
isPlaying: {{isPlaying}}<br>
</code></p>
{{/if}}
</div>
<div class="EmberYoutube-yield">
{{yield}}
</div>
| Make it possible to yield the component | Make it possible to yield the component
| Handlebars | mit | ulisesrmzroche/ember-youtube,mcfiredrill/ember-youtube,denisnazarov/ember-youtube,oskarrough/ember-youtube,lancedikson/ember-youtube,denisnazarov/ember-youtube,PlasmaPower/ember-youtube,oskarrough/ember-youtube,lancedikson/ember-youtube,mcfiredrill/ember-youtube,ulisesrmzroche/ember-youtube,PlasmaPower/ember-youtube |
13229b3e3482501a9b381e74bffa555025d1c792 | app/views/jst/roles/roleHeader.handlebars | app/views/jst/roles/roleHeader.handlebars | <em data-tooltip title="{{baseRoleTip}}">{{label}}</em>
{{#if editable}}
<a class="edit_role" href="#" aria-label="Edit role {{label}}"><i class="icon-edit standalone-icon" ></i></a>
<a class="delete_role" href="#" aria-label="Delete role {{label}}"><i class="icon-end standalone-icon" ></i></a>
{{/if}}
| <em data-tooltip title="{{baseRoleTip}}">{{label}} ({{id}})</em>
{{#if editable}}
<a class="edit_role" href="#" aria-label="Edit role {{label}}"><i class="icon-edit standalone-icon" ></i></a>
<a class="delete_role" href="#" aria-label="Delete role {{label}}"><i class="icon-end standalone-icon" ></i></a>
{{/if}}
| Add role_id in parenthesis next to the role name in the permissions scheme. | LMS-1415: Add role_id in parenthesis next to the role name in the permissions scheme.
| Handlebars | agpl-3.0 | HotChalk/canvas-lms,HotChalk/canvas-lms,HotChalk/canvas-lms,HotChalk/canvas-lms |
5e828665deacd06d1af252268da05c2838a93020 | templates/mustaches/colorscheme.hbs | templates/mustaches/colorscheme.hbs | " ===============================================================
" {{ theme.name }}
" {{ theme.description }}
" URL: {{ pkg.url }}
" Author: {{ pkg.author }}
" License: {{ pkg.license }}
" Last Change: {{ date }}
" ===============================================================
let g:colors_name="{{ theme.name }}"
hi clear
if exists("syntax_on")
syntax reset
endif
set background={{ theme.background }}
{{#each c~}}
{{#if link}}hi link {{@key}} {{link~}}
{{~^~}}hi {{ @key }}
{{~#if fore}} guifg={{fore.[0]}} ctermfg={{fore.[1]}}{{/if}}
{{~#if back}} guibg={{back.[0]}} ctermbg={{back.[1]}}{{/if}}
{{~#if ui}} gui={{ui}} cterm={{ui}}{{/if}}
{{~#if guisp}} guisp={{guisp.[0]}}{{/if}}
{{~/if}}
{{/each}}
{{#each nterm}}
let g:terminal_{{@key}} = "{{this}}"
{{/each}}
" ===================================
" Generated by Estilo {{ estiloVersion }}
" https://github.com/jacoborus/estilo
" ===================================
| " ===============================================================
" {{ theme.name }}
" {{ theme.description }}
" URL: {{ pkg.url }}
" Author: {{ pkg.author }}
" License: {{ pkg.license }}
" Last Change: {{ date }}
" ===============================================================
set background={{ theme.background }}
hi clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name="{{ theme.name }}"
{{#each c~}}
{{#if link}}hi link {{@key}} {{link~}}
{{~^~}}hi {{ @key }}
{{~#if fore}} guifg={{fore.[0]}} ctermfg={{fore.[1]}}{{/if}}
{{~#if back}} guibg={{back.[0]}} ctermbg={{back.[1]}}{{/if}}
{{~#if ui}} gui={{ui}} cterm={{ui}}{{/if}}
{{~#if guisp}} guisp={{guisp.[0]}}{{/if}}
{{~/if}}
{{/each}}
{{#each nterm}}
let g:terminal_{{@key}} = "{{this}}"
{{/each}}
" ===================================
" Generated by Estilo {{ estiloVersion }}
" https://github.com/jacoborus/estilo
" ===================================
| Define g:clors_name after hi clear | Define g:clors_name after hi clear | Handlebars | mit | jacoborus/estilo |
df887f82fe90a297496aa388ab0df29a3662f2ff | source/templates/layouts/default.hbs | source/templates/layouts/default.hbs | {{!--
layouts/default
@param {String} [file.data.title] Page sub-title
@block main The main content block
--}}
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Solar Mosaic Style Guide{{#if file.data.title}}: {{file.data.title}}{{/if}}</title>
{{!-- TODO better asset url handling for local vs remote --}}
<link href="/styleguide/assets/styles/styleguide.css" rel="stylesheet">
</head>
<body>
<h1>Solar Mosaic Style Guide</h1>
<nav class="global">
{{> [partials/navigation] file.nav.root}}
</nav>
<main class="main" role="main">
{{{block "layouts/default/main"}}}
</main>
</body>
</html>
| {{!--
layouts/default
@param {String} [file.data.title] Page sub-title
@block main The main content block
--}}
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Solar Mosaic Style Guide{{#if file.data.title}}: {{file.data.title}}{{/if}}</title>
{{!-- TODO better asset url handling for local vs remote --}}
<link href="/styleguide/assets/styles/styleguide.css" rel="stylesheet">
</head>
<body>
{{#with file.nav.root}}
<h1><a href="{{href}}" title="{{title}}">Solar Mosaic Style Guide</a></h1>
{{/with}}
<nav class="global">
{{> [partials/navigation] file.nav.root}}
</nav>
<main class="main" role="main">
{{{block "layouts/default/main"}}}
</main>
</body>
</html>
| Add link to main page | Add link to main page
| Handlebars | mit | solarmosaic/styleguide |
7aa2afc3724496b60535394a5a9a91457b849699 | src/form/fields/templates/simplifiedButton.hbs | src/form/fields/templates/simplifiedButton.hbs | <div class="js-grid-region"></div>
<div class="js-counter-region counter_container">
<div class="js-counter-region__counter"></div>
</div> | <div class="js-grid-region"></div>
<div class="js-counter-region counter_container">
<div class="js-counter-region__counter"></div>
<i class="fa fa-angle-down bubbles__caret"></i>
</div> | Add caret to simple field | Add caret to simple field
| Handlebars | mit | comindware/core-ui,comindware/core-ui,comindware/core-ui,comindware/core-ui |
e330a7b14e36094347bceaf2c7514eeb8ad91ef4 | app/templates/user.hbs | app/templates/user.hbs | <div class="column user-stats">
<div>
<img {{bind-attr src="smallImage"}}>
</div>
<div class="item-count">
<p>{{sellingCount}} for sale</p>
<p>{{selledCount}} sold</p>
</div>
</div>
<div class="column user-info">
<div class="user-name">
<p>{{microName}}</p>
<p>{{location.city}}</p>
</div>
<div class="profile-verification">
<p>Profile verified</p>
<div>
<i {{bind-attr class=":fa :fa-envelope isEmailVerified:verified"}}></i>
<i {{bind-attr class=":fa :fa-phone isCellPhoneVerified:verified"}}></i>
<i {{bind-attr class=":fa :fa-facebook isFacebookVerified:verified"}}></i>
<i {{bind-attr class=":fa :fa-google isGooglePlusVerified:verified"}}></i>
</div>
</div>
<div class="received-reviews">
<p>
<span>{{receivedReviewsCount}}</span> Reviews
<i class="fa fa-angle-right"}}></i>
</p>
</div>
</div> | <div class="column user-stats">
<div>
<img src={{smallImage}}>
</div>
<div class="item-count">
<p>{{sellingCount}} for sale</p>
<p>{{selledCount}} sold</p>
</div>
</div>
<div class="column user-info">
<div class="user-name">
<p>{{microName}}</p>
<p>{{location.city}}</p>
</div>
<div class="profile-verification">
<p>Profile verified</p>
<div>
<i {{bind-attr class=":fa :fa-envelope isEmailVerified:verified"}}></i>
<i {{bind-attr class=":fa :fa-phone isCellPhoneVerified:verified"}}></i>
<i {{bind-attr class=":fa :fa-facebook isFacebookVerified:verified"}}></i>
<i {{bind-attr class=":fa :fa-google isGooglePlusVerified:verified"}}></i>
</div>
</div>
<div class="received-reviews">
<p>
<span>{{receivedReviewsCount}}</span> Reviews
<i class="fa fa-angle-right"></i>
</p>
</div>
</div>
| Add a couple of htmlbars things | Add a couple of htmlbars things
| Handlebars | mit | zzarcon/wallapop-webapp,zzarcon/wallapop-webapp,nwabdou85/wallapop-webapp,nwabdou85/wallapop-webapp |
90e5dd4afbfb5609f9094d9ed82becdc74108a23 | app/templates/organization.hbs | app/templates/organization.hbs | <div class="off-canvas-wrap" data-offcanvas>
<div class="inner-wrap">
<nav class="tab-bar">
{{#unless isAnonymous}}
<section class="left-small">
<a class="left-off-canvas-toggle menu-icon" href="#"><span></span></a>
</section>
{{/unless}}
<section class="middle tab-bar-section">
<h1 class="title">{{outlet title}}</h1>
</section>
<section class="right-large">
<div class="right">
{{#if canEdit}}
{{name}}
<a href="/logout">Log out</a>
{{/if}}
</div>
</section>
</nav>
<aside class="left-off-canvas-menu">
<ul class="off-canvas-list">
<li>
<label>Projects
{{#if canEdit}}
<span class="label" {{action "createProject"}}>New</span>
{{/if}}
</label>
</li>
{{#each project in projects}}
<li>
{{#link-to 'project' project}}
{{project.name}}
{{#if canEdit}}
<span class="right" {{action "deleteProject" project}}>×</span>
{{/if}}
{{/link-to}}
</li>
{{else}}
You don't have any projects
{{/each}}
</ul>
</aside>
<section class="main-section">
{{outlet}}
</section>
<a class="exit-off-canvas"></a>
</div>
</div>
| <div class="off-canvas-wrap" data-offcanvas>
<div class="inner-wrap">
<nav class="tab-bar">
{{#unless isAnonymous}}
<section class="left-small">
<a class="left-off-canvas-toggle menu-icon" href="#"><span></span></a>
</section>
{{/unless}}
<section class="middle tab-bar-section">
<h1 class="title">{{outlet title}} Dashboard</h1>
</section>
<section class="right-large">
<div class="right">
{{#if canEdit}}
{{name}}
<a href="/logout">Log out</a>
{{/if}}
</div>
</section>
</nav>
<aside class="left-off-canvas-menu">
<ul class="off-canvas-list">
<li>
<label>Projects
{{#if canEdit}}
<span class="label" {{action "createProject"}}>New</span>
{{/if}}
</label>
</li>
{{#each project in projects}}
<li>
{{#link-to 'project' project}}
{{project.name}}
{{#if canEdit}}
<span class="right" {{action "deleteProject" project}}>×</span>
{{/if}}
{{/link-to}}
</li>
{{else}}
You don't have any projects
{{/each}}
</ul>
</aside>
<section class="main-section">
{{outlet}}
</section>
<a class="exit-off-canvas"></a>
</div>
</div>
| Append dashboard to the project title | Append dashboard to the project title
| Handlebars | apache-2.0 | with-regard/regard-website |
9f3392a4aa2d9b99622e5a83b463c760267e809b | partials/loop.hbs | partials/loop.hbs | {{! Previous/next page links - only displayed on page 2+ }}
<div class="extra-pagination inner">
{{pagination}}
</div>
{{! This is the post loop - each post will be output using this markup }}
{{#foreach posts}}
<article class="{{post_class}}">
<span class="notepad-post-meta">
<div class="DairyDate">
<span class="day" datetime="{{date format='YYYY-MM-DD'}}">{{date format="DD"}}</span>
<span class="month-year" datetime="{{date format='YYYY-MM-DD'}}">{{date format="MMMM YYYY"}}</span>
</div>
</span>
<div class="DairyList">
<header class="post-header">
<h2 class="post-title"><a href="{{url}}">{{{title}}}</a></h2>
</header>
<section class="post-meta">
{{#if author.image}}<img class="author-thumb" src="{{author.image}}" alt="{{author.name}}" nopin="nopin" />{{/if}}
{{author}}
</section>
<section class="post-excerpt">
<p>{{excerpt words="26"}} <a class="read-more" href="{{url}}">»</a></p>
</section>
<footer class="post-meta">
{{tags prefix=" on "}}
</footer>
</div>
</article>
{{/foreach}}
{{! Previous/next page links - displayed on every page }}
{{pagination}}
| {{! Previous/next page links - only displayed on page 2+ }}
<div class="extra-pagination inner">
{{pagination}}
</div>
{{! This is the post loop - each post will be output using this markup }}
{{#foreach posts}}
<article class="{{post_class}}">
<span class="notepad-post-meta">
<div class="DairyDate">
<span class="day" datetime="{{date format='YYYY-MM-DD'}}">{{date format="DD"}}</span>
<span class="month-year" datetime="{{date format='YYYY-MM-DD'}}">{{date format="MMMM YYYY"}}</span>
</div>
</span>
<div class="DairyList">
<header class="post-header">
<h2 class="post-title"><a href="{{url}}">{{{title}}}</a></h2>
</header>
<section class="post-excerpt">
<p>{{excerpt words="26"}} <a class="read-more" href="{{url}}">»</a></p>
</section>
<footer class="post-meta">
{{#if author.image}}<img class="author-thumb" src="{{author.image}}" alt="{{author.name}}" nopin="nopin" />{{/if}}
{{author}}
{{tags prefix=" on "}}
</footer>
</div>
</article>
{{/foreach}}
{{! Previous/next page links - displayed on every page }}
{{pagination}}
| Revert "Revert "Revert "Revert "Revert "sc""""" | Revert "Revert "Revert "Revert "Revert "sc"""""
This reverts commit 7c86d067a0b50689565b5b3eadbb9987acaa6086.
| Handlebars | mit | SiliCAT/Casper,SiliCAT/Casper |
3bee55f5940ef9764c996921aeca9e2638bb74f0 | app/templates/components/upf-table/pagination.hbs | app/templates/components/upf-table/pagination.hbs | <span class="text-color-contrast text-size-6">{{from}} to {{to}} out of {{itemTotal}} {{itemName}}</span>
<a class="upf-link--reset" {{action 'previousPage'}}>{{fa-icon 'fa-caret-left'}}</a>
<a class="upf-link--reset" {{action 'nextPage'}}>{{fa-icon 'fa-caret-right'}}</a>
| <span class="text-color-contrast text-size-6">{{from}} to {{to}} out of {{itemTotal}} {{itemName}}</span>
<a class="upf-link--reset {{unless hasPrevious 'upf-link--disabled'}}" {{action 'previousPage'}}>{{fa-icon 'fa-caret-left'}}</a>
<a class="upf-link--reset {{unless hasNext 'upf-link--disabled'}}" {{action 'nextPage'}}>{{fa-icon 'fa-caret-right'}}</a>
| Add link disable for not previous/next page | Add link disable for not previous/next page
| Handlebars | mit | upfluence/oss-components,upfluence/oss-components,upfluence/oss-components,upfluence/oss-components |
7acda190e4cf33bfa7befa2ecf94a3d7e33d5748 | public/js/app/templates/footerTemplate.handlebars | public/js/app/templates/footerTemplate.handlebars | <footer class="footer p-footer">
© freefeed 0.3.1 (July 11, 2015) | Runs on <a href="https://github.com/pepyatka">Pepyatka</a> open-source engine v0.3.0 | <a href="http://about.freefeed.net">About</a>
</footer>
| <footer class="footer p-footer">
© freefeed 0.3.2 (July 24, 2015) | Runs on <a href="https://github.com/pepyatka">Pepyatka</a> open-source engine v0.3.0 | <a href="http://about.freefeed.net">About</a>
</footer>
| Bump site version to 0.3.2 | Bump site version to 0.3.2
| Handlebars | mit | FreeFeed/freefeed-html,dsumin/freefeed-html,dsumin/freefeed-html,FreeFeed/freefeed-html |
2d29d23415b97d29ca7a002ca3291051c6de8ea8 | app/templates/application.hbs | app/templates/application.hbs | <div class="ui menu">
<div class="item">
{{link-to 'Home' 'index'}}
</div>
<div class="right menu">
<div class="item">
{{!-- {{#ui-dropdown class="search selection" allowAdditions=true selected=selected_type_addition onChange=(route-action 'transitionToProfile') as |execute mapper|}}
<div class="default text">Districts</div>
<i class="dropdown icon"></i>
<div class="menu">
<div class="item" data-value="">All Items</div>
{{#each model.features as |profile|}}
<div class="item" data-value="{{map-value mapper (hash boro=(dasherize profile.properties.boro) borocd=profile.properties.borocd)}}">
{{profile.properties.boro}} {{profile.properties.cd}}
</div>
{{/each}}
</div>
{{/ui-dropdown}} --}}
</div>
</div>
</div>
{{#leaflet-map bounds=mapState.bounds}}
{{tile-layer url="http://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}.png"}}
{{#geojson-layer geoJSON=model style=style onClick=(action "handleClick") onMouseover=(action "handleMouseover")}}
{{#tooltip-layer}}
<p>{{tooltip-text}}</p>
{{/tooltip-layer}}
{{/geojson-layer}}
{{/leaflet-map}}
{{outlet}}
| <div class="ui menu">
<div class="item">
{{link-to 'Home' 'index'}}
</div>
<div class="right menu">
<div class="item">
{{#power-select
options=options
selected=selected
searchField="name"
onchange=(route-action 'transitionToProfile')
as |district|
}}
{{district.name}}
{{/power-select}}
</div>
</div>
</div>
{{#leaflet-map bounds=mapState.bounds}}
{{tile-layer url="http://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}.png"}}
{{#geojson-layer geoJSON=model style=style onClick=(action "handleClick") onMouseover=(action "handleMouseover")}}
{{#tooltip-layer}}
<p>{{tooltip-text}}</p>
{{/tooltip-layer}}
{{/geojson-layer}}
{{/leaflet-map}}
{{outlet}}
| Replace semantic ui dropdown with power select | Replace semantic ui dropdown with power select
| Handlebars | mit | NYCPlanning/labs-community-portal,NYCPlanning/labs-community-portal |
18fbe46c133c44d3f2bed0a709d5d54aab22b932 | content/themes/casper/partials/loop.hbs | content/themes/casper/partials/loop.hbs | {{! Previous/next page links - only displayed on page 2+ }}
<div class="extra-pagination inner">
{{pagination}}
</div>
{{! This is the post loop - each post will be output using this markup }}
{{#foreach posts}}
<article class="{{post_class}}">
<header class="post-header">
<h2 class="post-title"><a href="{{url}}">{{{title}}}</a></h2>
</header>
<section class="post-excerpt">
<p>{{excerpt words="26"}} <a class="read-more" href="{{url}}">»</a></p>
</section>
<footer class="post-meta">
{{#if author.image}}<img class="author-thumb" src="{{author.image}}" alt="Author image" nopin="nopin" />{{/if}}
{{author}}
{{tags prefix=" on "}}
<time class="post-date" datetime="{{date format='YYYY-MM-DD'}}">{{date format="DD MMMM YYYY"}}</time>
<span class="post-date"> <a href="{{url}}#disqus_thread">Comments</a> </span>
</footer>
</article>
{{/foreach}}
{{! Previous/next page links - displayed on every page }}
{{pagination}}
| {{! Previous/next page links - only displayed on page 2+ }}
<div class="extra-pagination inner">
{{pagination}}
</div>
{{! This is the post loop - each post will be output using this markup }}
{{#foreach posts}}
<article class="{{post_class}}">
<header class="post-header">
<h2 class="post-title"><a href="{{url}}">{{{title}}}</a></h2>
</header>
<section class="post-excerpt">
<p>{{excerpt words="26"}} <a class="read-more" href="{{url}}">»</a></p>
</section>
<footer class="post-meta">
{{#if author.image}}<img class="author-thumb" src="{{author.image}}" alt="Author image" nopin="nopin" />{{/if}}
{{author}}
{{tags prefix=" on "}}
<time class="post-date" datetime="{{date format='YYYY-MM-DD'}}">{{date format="DD MMMM YYYY"}}</time>
<span class="post-date"> <a href="{{url}}#disqus_thread" data-disqus-identifier="ghost-{{id}}">Comments</a> </span>
</footer>
</article>
{{/foreach}}
{{! Previous/next page links - displayed on every page }}
{{pagination}}
| Add disqus identifier, based on ghost id | Add disqus identifier, based on ghost id
| Handlebars | mit | ftasse/writer-blog,ftasse/writer-blog |
48dd4f40bab85da85c1f63f3760cb9932fd313c7 | addon/components/validated-input/template.hbs | addon/components/validated-input/template.hbs | <label class={{config.css.label}} for={{name}}>
{{label}}{{#if required}} *{{/if}}
</label>
{{#if (eq type "select")}}
{{one-way-select
value = (get model name)
options = options
optionLabelPath = optionLabelPath
optionValuePath = optionValuePath
optionTargetPath = optionTargetPath
name = name
class = config.css.control
update = (action "update")
focusOut = (action "setDirty")
includeBlank = includeBlank
}}
{{else if (eq type "radioGroup")}}
{{#each options as |option|}}
<div class="radio">
<label>
{{one-way-radio
value = (get model name)
option = option.key
name = name
update = (action "update")
focusOut = (action "setDirty")
}}
{{option.label}}</label>
</div>
{{/each}}
{{else}}
{{component (concat "one-way-" type)
value = (get model name)
options = options
name = name
class = config.css.control
update = (action "update")
focusOut = (action "setDirty")
placeholder = placeholder
}}
{{/if}}
{{#if help}}
<p class={{config.css.help}}>{{help}}</p>
{{/if}}
{{#if showError}}
<span class={{config.css.help}}>{{firstError}}</span>
{{/if}}
| <label class={{config.css.label}} for={{name}}>
{{label}}{{#if required}} *{{/if}}
</label>
{{#if (eq type "select")}}
{{one-way-select
value = (get model name)
options = options
optionLabelPath = optionLabelPath
optionValuePath = optionValuePath
optionTargetPath = optionTargetPath
name = name
class = config.css.control
update = (action "update")
focusOut = (action "setDirty")
includeBlank = includeBlank
disabled = disabled
}}
{{else if (eq type "radioGroup")}}
{{#each options as |option|}}
<div class="radio">
<label>
{{one-way-radio
value = (get model name)
option = option.key
name = name
update = (action "update")
focusOut = (action "setDirty")
disabled = disabled
}}
{{option.label}}</label>
</div>
{{/each}}
{{else}}
{{component (concat "one-way-" type)
value = (get model name)
options = options
name = name
class = config.css.control
update = (action "update")
focusOut = (action "setDirty")
placeholder = placeholder
disabled = disabled
readonly = readonly
}}
{{/if}}
{{#if help}}
<p class={{config.css.help}}>{{help}}</p>
{{/if}}
{{#if showError}}
<span class={{config.css.help}}>{{firstError}}</span>
{{/if}}
| Add disabled and readonly support | Add disabled and readonly support
| Handlebars | mit | adfinis-sygroup/ember-validated-form,adfinis-sygroup/ember-validated-form,adfinis-sygroup/ember-validated-form |
96220e2148f211e446d3883a553b09975bd465f6 | app/components/canvas-title-actions/template.hbs | app/components/canvas-title-actions/template.hbs | {{#if isTemplate}}
<button {{action "onUseTemplate"}} local-class="template-badge">Use Template</button>
{{/if}}
<div local-class="actions">
{{#basic-dropdown horizontalPosition='right' as |dropdown|}}
{{#dropdown.trigger}}
<div local-class="trigger">
{{svg-jar "More" height="24" width="24"}}
</div>
{{/dropdown.trigger}}
{{#dropdown.content}}
{{#ui-menu as |menu|}}
{{#menu.item action=(queue (action dropdown.actions.close) (action toggleShowFilter))}}
Filter
{{/menu.item}}
{{#if (eq canvas.team.domain 'usecanvas')}}
{{#menu.item action=(action 'navigateHistory')}}
Time Machine
{{/menu.item}}
{{/if}}
{{#menu.item link=(concat canvas.apiURL '.md')}}
View Markdown
{{/menu.item}}
{{#menu.item link=(concat canvas.apiURL '.canvas') download=(concat canvas.title '.canvas')}}
Download Canvas
{{/menu.item}}
{{#if showDeleteCanvas}}
{{#menu.item action=(action 'deleteCanvas')}}
Delete
{{/menu.item}}
{{/if}}
{{/ui-menu}}
{{/dropdown.content}}
{{/basic-dropdown}}
</div>
| {{#if isTemplate}}
<button {{action "onUseTemplate"}} local-class="template-badge">Use Template</button>
{{/if}}
<div local-class="actions">
{{#basic-dropdown horizontalPosition='right' as |dropdown|}}
{{#dropdown.trigger}}
<div local-class="trigger">
{{svg-jar "More" height="24" width="24"}}
</div>
{{/dropdown.trigger}}
{{#dropdown.content}}
{{#ui-menu as |menu|}}
{{#menu.item action=(queue (action dropdown.actions.close) (action toggleShowFilter))}}
Filter
{{/menu.item}}
{{#menu.item action=(action 'navigateHistory')}}
Time Machine
{{/menu.item}}
{{#menu.item link=(concat canvas.apiURL '.md')}}
View Markdown
{{/menu.item}}
{{#menu.item link=(concat canvas.apiURL '.canvas') download=(concat canvas.title '.canvas')}}
Download Canvas
{{/menu.item}}
{{#if showDeleteCanvas}}
{{#menu.item action=(action 'deleteCanvas')}}
Delete
{{/menu.item}}
{{/if}}
{{/ui-menu}}
{{/dropdown.content}}
{{/basic-dropdown}}
</div>
| Allow everyone to use Time Machine | Allow everyone to use Time Machine
| Handlebars | apache-2.0 | usecanvas/web-v2,usecanvas/web-v2,usecanvas/web-v2 |
cd39e0a75a0d0cc709a4b655c4d18266b97f12d9 | app/components/personal-team-form/template.hbs | app/components/personal-team-form/template.hbs | <b>Domain:</b>
~{{input value=teamDomain}}
<button {{action 'onSubmit'}}>Set Team Domain</button>
| <b>Domain:</b>
<form>
~{{input value=teamDomain}}
<input type="submit" {{action 'onSubmit'}} value="Set Team Domain">
</form>
| Put team domain change in a form | Put team domain change in a form
| Handlebars | apache-2.0 | usecanvas/web-v2,usecanvas/web-v2,usecanvas/web-v2 |
5ad6e1ed1fd3a40dcc25187b168b15022184db38 | partials/site-nav.hbs | partials/site-nav.hbs | <nav class="site-nav">
<div class="site-nav-left">
{{^is "home"}}
{{#if @blog.logo}}
<a class="site-nav-logo" href="{{@blog.url}}"><img src="{{@blog.logo}}" alt="{{@blog.title}}" /></a>
{{else}}
<a class="site-nav-logo" href="{{@blog.url}}">{{@blog.title}}</a>
{{/if}}
{{/is}}
{{#if @blog.navigation}}
{{navigation}}
{{/if}}
</div>
<div class="site-nav-right">
<div class="social-links">
{{#if @blog.facebook}}
<a class="social-link social-link-fb" href="{{facebook_url @blog.facebook}}" target="_blank" rel="noopener">{{> "icons/facebook"}}</a>
{{/if}}
{{#if @blog.twitter}}
<a class="social-link social-link-tw" href="{{twitter_url @blog.twitter}}" target="_blank" rel="noopener">{{> "icons/twitter"}}</a>
{{/if}}
</div>
{{#if @labs.subscribers}}
<a class="subscribe-button" href="#subscribe">Subscribe</a>
{{else}}
<a class="rss-button" href="https://feedly.com/i/subscription/feed/{{@blog.url}}/rss/" target="_blank" rel="noopener">{{> "icons/rss"}}</a>
{{/if}}
</div>
</nav>
| <nav class="site-nav">
<div class="site-nav-left">
{{^is "home"}}
{{#if @blog.logo}}
<a class="site-nav-logo" href="{{@blog.url}}"><img src="{{@blog.logo}}" alt="{{@blog.title}}" /></a>
{{else}}
<a class="site-nav-logo" href="{{@blog.url}}">{{@blog.title}}</a>
{{/if}}
{{/is}}
{{#if @blog.navigation}}
{{navigation}}
{{/if}}
</div>
<div class="site-nav-right">
<div class="social-links">
{{#if @blog.facebook}}
<a class="social-link social-link-fb" href="{{facebook_url @blog.facebook}}" title="Facebook" target="_blank" rel="noopener">{{> "icons/facebook"}}</a>
{{/if}}
{{#if @blog.twitter}}
<a class="social-link social-link-tw" href="{{twitter_url @blog.twitter}}" title="Twitter" target="_blank" rel="noopener">{{> "icons/twitter"}}</a>
{{/if}}
</div>
{{#if @labs.subscribers}}
<a class="subscribe-button" href="#subscribe">Subscribe</a>
{{else}}
<a class="rss-button" href="https://feedly.com/i/subscription/feed/{{@blog.url}}/rss/" title="RSS" target="_blank" rel="noopener">{{> "icons/rss"}}</a>
{{/if}}
</div>
</nav>
| Add titles to icon links | Add titles to icon links | Handlebars | mit | alvareztech/Casper,sawilde/Casper,matitalatina/Casper,TryGhost/Casper,Inchdev/blog-theme,russmckendrick/Casper,alvareztech/Casper,matitalatina/Casper,jedidja/Casper,eduardochiaro/Casper-Light,ErisDS/Casper,Mr-Zer0/yansnote,Inchdev/blog-theme,dlecina/StayPuft,eduardochiaro/Casper-Light,jedidja/Casper,Mr-Zer0/yansnote,ImKcat/ImKcatCasper,dlew/Casper,sawilde/Casper,eidolem/casper,dlecina/StayPuft,ErisDS/Casper,eidolem/casper |
33c2bbf0f1e147e1f157dba1c9d8c71237f64684 | static/templates/message_reactions.handlebars | static/templates/message_reactions.handlebars | {{#each this/msg/message_reactions}}
{{partial "message_reaction"}}
{{/each}}
<div class="reaction_button" title="{{t 'Add emoji reaction' }} (:)">
<i class="fa fa-smile-o" aria-hidden="true"></i>
<div class="message_reaction_count">+</div>
</div>
| {{#each this/msg/message_reactions}}
{{partial "message_reaction"}}
{{/each}}
<div class="reaction_button" title="{{t 'Add emoji reaction' }} (:)">
<i class="fa fa-smile-o" role="button" aria-haspopup="true" tabindex="0" aria-label="{{t 'Add emoji reaction' }} (:)"></i>
<div class="message_reaction_count">+</div>
</div>
| Make another reactions button semi-accessible. | accessibility: Make another reactions button semi-accessible.
| Handlebars | apache-2.0 | shubhamdhama/zulip,eeshangarg/zulip,shubhamdhama/zulip,andersk/zulip,synicalsyntax/zulip,tommyip/zulip,dhcrzf/zulip,rht/zulip,jackrzhang/zulip,shubhamdhama/zulip,showell/zulip,jackrzhang/zulip,rht/zulip,punchagan/zulip,showell/zulip,rht/zulip,brainwane/zulip,tommyip/zulip,andersk/zulip,punchagan/zulip,zulip/zulip,zulip/zulip,brainwane/zulip,zulip/zulip,zulip/zulip,hackerkid/zulip,shubhamdhama/zulip,rishig/zulip,synicalsyntax/zulip,synicalsyntax/zulip,jackrzhang/zulip,dhcrzf/zulip,kou/zulip,timabbott/zulip,timabbott/zulip,brainwane/zulip,timabbott/zulip,hackerkid/zulip,dhcrzf/zulip,synicalsyntax/zulip,andersk/zulip,jackrzhang/zulip,synicalsyntax/zulip,hackerkid/zulip,timabbott/zulip,showell/zulip,eeshangarg/zulip,andersk/zulip,eeshangarg/zulip,brainwane/zulip,hackerkid/zulip,kou/zulip,tommyip/zulip,showell/zulip,rht/zulip,andersk/zulip,punchagan/zulip,kou/zulip,rht/zulip,andersk/zulip,rishig/zulip,hackerkid/zulip,rishig/zulip,showell/zulip,kou/zulip,jackrzhang/zulip,rishig/zulip,timabbott/zulip,kou/zulip,hackerkid/zulip,punchagan/zulip,rishig/zulip,jackrzhang/zulip,hackerkid/zulip,zulip/zulip,eeshangarg/zulip,dhcrzf/zulip,rishig/zulip,eeshangarg/zulip,rht/zulip,eeshangarg/zulip,zulip/zulip,kou/zulip,timabbott/zulip,tommyip/zulip,dhcrzf/zulip,synicalsyntax/zulip,rht/zulip,shubhamdhama/zulip,rishig/zulip,punchagan/zulip,punchagan/zulip,showell/zulip,tommyip/zulip,zulip/zulip,timabbott/zulip,showell/zulip,shubhamdhama/zulip,synicalsyntax/zulip,tommyip/zulip,kou/zulip,brainwane/zulip,eeshangarg/zulip,brainwane/zulip,andersk/zulip,brainwane/zulip,jackrzhang/zulip,punchagan/zulip,dhcrzf/zulip,dhcrzf/zulip,tommyip/zulip,shubhamdhama/zulip |
2950d1ba28c3b07bda54cc55b6a631372b2531d0 | packages/tools/tests/dummy/app/templates/application.hbs | packages/tools/tests/dummy/app/templates/application.hbs | {{#cardstack-session as |session|}}
{{#if session.isAuthenticated }}
<button id="logout-button" {{action session.logout}}>Logout {{session.user.name}}</button>
{{else}}
{{#mock-login as |login|}}
<button id="login-button" {{action login "user1"}}>Login</button>
{{/mock-login}}
{{/if}}
{{/cardstack-session}}
{{#cardstack-edges}}
{{#squishable-container}}
{{outlet}}
{{/squishable-container}}
{{/cardstack-edges}} | {{#cardstack-edges}}
{{#squishable-container}}
{{#cardstack-session as |session|}}
{{#if session.isAuthenticated }}
<button id="logout-button" {{action session.logout}}>Logout {{session.user.name}}</button>
{{else}}
{{#mock-login as |login|}}
<button id="login-button" {{action login "user1"}}>Login</button>
{{/mock-login}}
{{/if}}
{{/cardstack-session}}
{{outlet}}
{{/squishable-container}}
{{/cardstack-edges}} | Fix positioning/displaying the login button | Fix positioning/displaying the login button
| Handlebars | mit | cardstack/cardstack,cardstack/cardstack,cardstack/cardstack,cardstack/cardstack,cardstack/cardstack,cardstack/cardstack |
dbde32c995d0242ca58d9ae2bb35299b75ef830a | views/forums/index.handlebars | views/forums/index.handlebars | <section class="marginTop">
<form>
<label for="searchBox"><i class="fa fa-search" aria-hidden="true"></i></label>
<input id="searchBox" type="text" placeholder="Search by title, tag, or brand" />
{{#if price}}
<span>
<label>price</label>
<span class="inputitem">
{{#each price}}
<input type="checkbox" name="prices[]" id="price-{{ @key }}" value="{{ @key }}" />
<label for="{{ @key }}">{{ @key }}</label><br />
{{/each}}
</span>
</span>
{{/if}}
{{#if labels}}
<span>
<label>Labels</label>
<span class="inputitem">
{{#each labels}}
<input type="checkbox" name="labels[]" id="labels-{{ @key }}" value="{{ @key }}" />
<label for="{{ @key }}">{{ @key }}</label><br />
{{/each}}
</span>
</span>
{{/if}}
<button id="searhButton" type="submit">Search</button>
</form>
<ol id="community-forums" class="list-group">
{{#each forums}}
<li class="list-group-item">
<p>{{ this.createdOn }}</p>
<a href="forums/{{this._id}}">{{ this.title }}</a>
</li>
{{/each}}
</ol>
</section>
<script src="/public/js/communityForums.js"></script>
| <section class="marginTop">
<form>
<label for="searchBox"><i class="fa fa-search" aria-hidden="true"></i></label>
<input id="searchBox" type="text" placeholder="Search by title, tag, or brand" />
{{#if price}}
<span>
<label for="prices">price</label>
<span id="prices" class="inputitem">
{{#each price}}
<input type="checkbox" name="prices[]" id="price-{{ @key }}" value="{{ @key }}" />
<label for="price-{{ @key }}">{{ @key }}</label><br />
{{/each}}
</span>
</span>
{{/if}}
{{#if labels}}
<span>
<label for="labels">Labels</label>
<span id="labels" class="inputitem">
{{#each labels}}
<input type="checkbox" name="labels[]" id="labels-{{ @key }}" value="{{ @key }}" />
<label for="labels-{{ @key }}">{{ @key }}</label><br />
{{/each}}
</span>
</span>
{{/if}}
<button id="searhButton" type="submit">Search</button>
</form>
<ol id="community-forums" class="list-group">
{{#each forums}}
<li class="list-group-item">
<p>{{ this.createdOn }}</p>
<a href="forums/{{this._id}}">{{ this.title }}</a>
</li>
{{/each}}
</ol>
</section>
<script src="/public/js/communityForums.js"></script>
| Fix accessibility with community forum search | Fix accessibility with community forum search
| Handlebars | mit | tsangjustin/CS546-Product_Forum,tsangjustin/CS546-Product_Forum |
5c27828d560f8f5b610b74daa992af14611bbb7c | app/templates/image-editor.hbs | app/templates/image-editor.hbs | <h3>
Image Editor
<small>By <a href="https://github.com/blazeeboy" target="_blank">Emad Elsaid</a></small>
</h3>
<div class="row full-width">
<div class="small-12 columns">
{{#devtools-file-button value=image format="url"}}
<i class="mdi">image</i> Open An Image
{{/devtools-file-button}}
<div class="darkroom-image">
<img src="{{image}}" id="darkroom" />
</div>
</div>
</div>
| <h3>
Image Editor
<small>By
<a href="https://github.com/MattKetmo" target="_blank">Matthieu Moquet</a>,
<a href="https://github.com/blazeeboy" target="_blank">Emad Elsaid</a>
</small>
</h3>
<div class="row full-width">
<div class="small-12 columns">
{{#devtools-file-button value=image format="url"}}
<i class="mdi">image</i> Open An Image
{{/devtools-file-button}}
<div class="darkroom-image">
<img src="{{image}}" id="darkroom" />
</div>
</div>
</div>
| Add credit to darkroomjs developer | Add credit to darkroomjs developer
| Handlebars | mit | blazeeboy/devtools,blazeeboy/devtools |
8670f124cfed340774cf42018680e30885b3256a | internals/generators/container/selectors.js.hbs | internals/generators/container/selectors.js.hbs | import { createSelector } from 'reselect';
/**
* Direct selector to the {{ camelCase name }} state domain
*/
const select{{ properCase name }}Domain = () => state => state.get('{{ camelCase name }}');
/**
* Other specific selectors
*/
/**
* Default selector used by {{ properCase name }}
*/
const select{{ properCase name }} = () => createSelector(
select{{ properCase name }}Domain(),
(substate) => substate
);
export default select{{ properCase name }};
export {
select{{ properCase name }}Domain,
};
| import { createSelector } from 'reselect';
/**
* Direct selector to the {{ camelCase name }} state domain
*/
const select{{ properCase name }}Domain = () => state => state.get('{{ camelCase name }}');
/**
* Other specific selectors
*/
/**
* Default selector used by {{ properCase name }}
*/
const select{{ properCase name }} = () => createSelector(
select{{ properCase name }}Domain(),
(substate) => substate.toJS()
);
export default select{{ properCase name }};
export {
select{{ properCase name }}Domain,
};
| Fix selectors generator to not show an error message by default | Fix selectors generator to not show an error message by default
| Handlebars | mit | react-boilerplate/react-boilerplate,rlagman/raphthelagman,ipselon/react-boilerplate-clone,pauleonardo/demo-trans,shiftunion/bot-a-tron,Proxiweb/react-boilerplate,kaizen7-nz/gold-star-chart,KarandikarMihir/react-boilerplate,Dmitry-N-Medvedev/motor-collection,ipselon/react-boilerplate-clone,gihrig/react-boilerplate,Jan-Jan/react-hackathon-boilerplate,blockfs/frontend-react,TheTopazWombat/levt-2,s0enke/react-boilerplate,TheTopazWombat/levt-2,Dmitry-N-Medvedev/motor-collection,chaintng/react-boilerplate,samit4me/react-boilerplate,s0enke/react-boilerplate,JonathanMerklin/react-boilerplate,mxstbr/react-boilerplate,Dmitry-N-Medvedev/motor-collection,Proxiweb/react-boilerplate,dbrelovsky/react-boilerplate,samit4me/react-boilerplate,blockfs/frontend-react,KarandikarMihir/react-boilerplate,codermango/BetCalculator,pauleonardo/demo-trans,absortium/frontend,AnhHT/react-boilerplate,mmaedel/react-boilerplate,kossel/react-boilerplate,w01fgang/react-boilerplate,Jan-Jan/react-hackathon-boilerplate,gtct/wallet.eine.com,StrikeForceZero/react-typescript-boilerplate,abasalilov/react-boilerplate,perry-ugroop/ugroop-react-dup2,haxorbit/chiron,chaintng/react-boilerplate,JonathanMerklin/react-boilerplate,romanvieito/ball-simpler,AnhHT/react-boilerplate,likesalmon/likesalmon-react-boilerplate,Proxiweb/react-boilerplate,react-boilerplate/react-boilerplate,Dattaya/react-boilerplate-object,mxstbr/react-boilerplate,Dattaya/react-boilerplate-object,gtct/wallet.eine.com,Demonslyr/Donut.WFE.Customer,mikejong0815/Temp,SilentCicero/react-boilerplate,tomazy/react-boilerplate,Demonslyr/Donut.WFE.Customer,gihrig/react-boilerplate-logic,gtct/wallet.eine.com,jasoncyu/always-be-bulking,mmaedel/react-boilerplate,tomazy/react-boilerplate,rlagman/raphthelagman,be-oi/beoi-training-client,kaizen7-nz/gold-star-chart,SilentCicero/react-boilerplate,haithemT/app-test,StrikeForceZero/react-typescript-boilerplate,s0enke/react-boilerplate,StrikeForceZero/react-typescript-boilerplate,romanvieito/ball-simpler,jasoncyu/always-be-bulking,absortium/frontend,codermango/BetCalculator,abasalilov/react-boilerplate,gtct/wallet.eine.com,haithemT/app-test,gihrig/react-boilerplate,perry-ugroop/ugroop-react-dup2,Dmitry-N-Medvedev/motor-collection,w01fgang/react-boilerplate,mikejong0815/Temp,dbrelovsky/react-boilerplate,gihrig/react-boilerplate-logic,haxorbit/chiron,be-oi/beoi-training-client,kossel/react-boilerplate,likesalmon/likesalmon-react-boilerplate,shiftunion/bot-a-tron |
26d979046c866d33a46aa206eb8432d3207db017 | views/gnome/papers/submit.hbs | views/gnome/papers/submit.hbs | {{#if submission_error}}
<font color="red"><b>Something went wrong submitting. Please check you filled in all fields!</b></font>
{{/if}}
<form action="/papers/submit" method="post">
<table class="submission-form">
<tr><td>Submitter:</td><td><input type="text" value="{{user.email}}" disabled /></td></tr>
<tr><td>Your name:</td><td><input type="text" name="submitter_name" value="{{user.name}}" disabled /></td></tr>
<tr><td>Paper title:</td><td><input type="text" name="paper_title" value="{{paper.title}}" maxlength=50 /></td></tr>
<tr><td>Paper summary:</td>
<td><textarea name="paper_summary">{{paper.summary}}</textarea></td>
</tr>
<tr><td>Track:</td>
<td>
<select name="track">
{{#each tracks}}
<option
{{#ifEqual ../paper.track this}}
selected="selected"
{{/ifEqual}}
>{{this}}</option>
{{/each}}
</select>
</td></tr>
<tr><td> </td>
<td><input class="submit-talk" type="submit" value="Submit" /></td>
</tr>
</table>
</form>
| {{#if submission_error}}
<font color="red"><b>Something went wrong submitting. Please check you filled in all fields!</b></font>
{{/if}}
<form action="/papers/submit" method="post">
<table class="submission-form">
<tr><td>Submitter:</td><td><input type="text" value="{{user.email}}" disabled /></td></tr>
<tr><td>Your name:</td><td><input type="text" name="submitter_name" value="{{user.name}}" disabled /><br />You will be able to add extra speakers after you have submitted the paper</td></tr>
<tr><td>Paper title:</td><td><input type="text" name="paper_title" value="{{paper.title}}" maxlength=50 /></td></tr>
<tr><td>Paper summary:</td>
<td><textarea name="paper_summary">{{paper.summary}}</textarea></td>
</tr>
<tr><td>Track:</td>
<td>
<select name="track">
{{#each tracks}}
<option
{{#ifEqual ../paper.track this}}
selected="selected"
{{/ifEqual}}
>{{this}}</option>
{{/each}}
</select>
</td></tr>
<tr><td> </td>
<td><input class="submit-talk" type="submit" value="Submit" /></td>
</tr>
</table>
</form>
| Add hint about additional speakers | Add hint about additional speakers
It's not clear that additional speakers can be added post-submission | Handlebars | mit | benzea/regcfp,thanostx/regcfp,benzea/regcfp,benzea/regcfp,thanostx/regcfp,thanostx/regcfp |
855d58552a6b72740b394198df4a3e06c6cdc027 | visualization/plop-templates/redux/service.ts.hbs | visualization/plop-templates/redux/service.ts.hbs | import { StoreService, StoreSubscriber } from "../../../store.service"
import { IRootScopeService } from "angular"
import { {{properCase name}}Actions } from "./{{camelCase name}}.actions"
import { isActionOfType } from "../../../../util/actionHelper"
export interface {{properCase name}}Subscriber {
on{{properCase name}}Changed({{camelCase name}}: {{type}})
}
export class {{properCase name}}Service implements StoreSubscriber {
private static {{constantCase name}}_CHANGED_EVENT = "{{kebabCase name}}-changed"
constructor(private $rootScope: IRootScopeService, private storeService: StoreService) {
StoreService.subscribe(this.$rootScope, this)
}
public onStoreChanged(actionType: string) {
if (isActionOfType(actionType, {{properName}}Actions)) {
this.notify(this.select())
}
}
private select() {
return this.storeService.getState().{{camelCase subreducer}}.{{camelCase name}}
}
private notify(newState: {{type}}) {
this.$rootScope.$broadcast({{properCase name}}Service.{{constantCase name}}_CHANGED_EVENT, { {{camelCase name}}: newState })
}
public static subscribe($rootScope: IRootScopeService, subscriber: {{properCase name}}Subscriber) {
$rootScope.$on({{properCase name}}Service.{{constantCase name}}_CHANGED_EVENT, (event, data) => {
subscriber.on{{properCase name}}Changed(data.{{camelCase name}})
})
}
}
| import { StoreService, StoreSubscriber } from "../../../store.service"
import { IRootScopeService } from "angular"
import { {{properCase name}}Actions } from "./{{camelCase name}}.actions"
import { isActionOfType } from "../../../../util/actionHelper"
export interface {{properCase name}}Subscriber {
on{{properCase name}}Changed({{camelCase name}}: {{type}})
}
export class {{properCase name}}Service implements StoreSubscriber {
private static {{constantCase name}}_CHANGED_EVENT = "{{kebabCase name}}-changed"
constructor(private $rootScope: IRootScopeService, private storeService: StoreService) {
StoreService.subscribe(this.$rootScope, this)
}
public onStoreChanged(actionType: string) {
if (isActionOfType(actionType, {{properCase name}}Actions)) {
this.notify(this.select())
}
}
private select() {
return this.storeService.getState().{{camelCase subreducer}}.{{camelCase name}}
}
private notify(newState: {{type}}) {
this.$rootScope.$broadcast({{properCase name}}Service.{{constantCase name}}_CHANGED_EVENT, { {{camelCase name}}: newState })
}
public static subscribe($rootScope: IRootScopeService, subscriber: {{properCase name}}Subscriber) {
$rootScope.$on({{properCase name}}Service.{{constantCase name}}_CHANGED_EVENT, (event, data) => {
subscriber.on{{properCase name}}Changed(data.{{camelCase name}})
})
}
}
| Fix plop template variable usage | Fix plop template variable usage
| Handlebars | bsd-3-clause | MaibornWolff/codecharta,MaibornWolff/codecharta,MaibornWolff/codecharta,MaibornWolff/codecharta,MaibornWolff/codecharta,MaibornWolff/codecharta,MaibornWolff/codecharta,MaibornWolff/codecharta |
f97c000a3d8ac71a7bea551270cdb4a9ed4ef1e8 | app/templates/page/menu.hbs | app/templates/page/menu.hbs | <ul class="off-canvas-list">
<li><label>Treatises</label></li>
{{#each treatise in treatises}}
<li>{{#link-to 'treatise' treatise}}{{treatise.title}}{{/link-to}}</li>
{{/each}}
</ul>
<ul class="off-canvas-list">
<li><label>{{title}}</label></li>
{{#each section in page.sections}}
<li>{{#link-to 'page.section' id section.slug}}Panel {{section.sortOrder}}{{/link-to}}</li>
{{/each}}
</ul>
<ul class="off-canvas-list">
<li><label>{{treatise.title}}</label></li>
{{#each page in treatise.pagesSorted}}
<li>{{#link-to 'page' page}}{{page.title}}{{/link-to}}</li>
{{/each}}
</ul> | <ul class="off-canvas-list">
<li><label>Treatises</label></li>
{{#each treatise in treatises}}
<li>{{#link-to 'treatise' treatise}}{{treatise.title}}{{/link-to}}</li>
{{/each}}
</ul>
{{#if page}}
<ul class="off-canvas-list">
<li><label>{{title}}</label></li>
{{#each section in page.sectionsSorted}}
<li>{{#link-to 'page.section' page.id section.id}}Panel {{section.sortOrder}}{{/link-to}}</li>
{{/each}}
</ul>
{{/if}}
<ul class="off-canvas-list">
<li><label>{{treatise.title}}</label></li>
{{#each page in treatise.pagesSorted}}
<li>{{#link-to 'page' page}}{{page.title}}{{/link-to}}</li>
{{/each}}
</ul> | Fix section links. Conditionally display if page is active | Fix section links. Conditionally display if page is active | Handlebars | mit | artzte/fightbook-app |
ddf03b2e45203211d4149aaeb455d6a2bb2d16ec | website/partners/technology/segment/index.hbs | website/partners/technology/segment/index.hbs | ---
layout: partners.hbs
title: "Segment"
integrations: true
priority: 48
summary: "Pass your data from Optimizely to 122+ other tools with a single integration."
logo: "__"
website_link: "https://segment.com/"
website_display: "www.segment.com"
kb_article: "https://help.optimizely.com/hc/en-us/articles/200039775#segment"
stars: 0
industry:
locations:
- location:
phone:
email:
region:
city:
state:
address1:
address2:
zip:
country:
contact: |
Questions?
techpartners@optimizely.com
languages:
tags:
---
##### Company
Segment is the customer data hub, enabling integrations with 122+ analytics and marketing tools with the flip of a switch.
##### Integration
Integrating with Segment enables customers to send custom event and revenue data to Optimizely. With Segment, customers can set up tracking for events once and then use that data across multiple analytics platforms. Additionally, Segment customers can send data from Optimizely to Segment's 122+ partners with a single integration.
| ---
layout: partners.hbs
title: "Segment"
integrations: true
priority: 48
summary: "Pass your data from Optimizely to 122+ other tools with a single integration."
logo: "//d1qmdf3vop2l07.cloudfront.net/optimizely-marketer-assets.cloudvent.net/raw/partner-logos/segment-logo-black.svg"
website_link: "https://segment.com/"
website_display: "www.segment.com"
kb_article: "https://help.optimizely.com/hc/en-us/articles/200039775#segment"
stars: 0
industry:
locations:
- location:
phone:
email:
region:
city:
state:
address1:
address2:
zip:
country:
contact: |
Questions?
techpartners@optimizely.com
languages:
tags:
---
##### Company
Segment is the customer data hub, enabling integrations with 122+ analytics and marketing tools with the flip of a switch.
##### Integration
Integrating with Segment enables customers to send custom event and revenue data to Optimizely. With Segment, customers can set up tracking for events once and then use that data across multiple analytics platforms. Additionally, Segment customers can send data from Optimizely to Segment's 122+ partners with a single integration.
| Update link to partner logo | Update link to partner logo | Handlebars | mit | CilantroOrg/CilantroVegOrg,CilantroOrg/CilantroVegOrg,CilantroOrg/CilantroVegOrg |
502422c09bc38524cbe949ca55526a0f05a7de39 | client/app/templates/components/order-form.hbs | client/app/templates/components/order-form.hbs | <form class="form order-form">
<div class="form__row">
<label class="form__label">
<span class="form__label-text">Заведение</span>
{{input value=place class="form__field"}}
</label>
</div>
<div class="form__row">
<label class="form__label">
<span class="form__label-text">Ваше имя</span>
{{input value=manager class="form__field"}}
</label>
</div>
<div class="form__row">
<label class="form__label">
<span class="form__label-text">Время заказа</span>
{{input value=orderTime class="form__field"}}
</label>
</div>
<div>
<label class="form__label">
<span class="form__label-text">Минимальный заказ, руб</span>
{{input value=amount class="form__field"}}
</label>
</div>
<button {{action "submit"}} type="submit" class="button button_submit">Добавить заказ</button>
</form>
| <form class="form order-form">
<div class="form__row">
<label class="form__label">
<span class="form__label-text">Заведение</span>
{{input value=place class="form__field"}}
</label>
</div>
<div class="form__row">
<label class="form__label">
<span class="form__label-text">Ваше имя</span>
{{input value=manager class="form__field"}}
</label>
</div>
<div class="form__row">
<label class="form__label">
<span class="form__label-text">Время заказа</span>
{{input value=orderTime class="form__field"}}
</label>
</div>
<div class="form__row">
<label class="form__label">
<span class="form__label-text">Минимальный заказ, руб</span>
{{input value=amount class="form__field"}}
</label>
</div>
<button {{action "submit"}} type="submit" class="button button_submit">Добавить заказ</button>
</form>
| Add missed class to form row | Add missed class to form row
| Handlebars | mit | yandex-shri-minsk-2016/yummy-time,yandex-shri-minsk-2016/yummy-time,yandex-shri-minsk-2016/yummy-time |
cd556a2bf13843c4a91ae4d63c4ae624d3caabcb | app/templates/components/multiple-textbox-input.hbs | app/templates/components/multiple-textbox-input.hbs | <fieldset>
<legend class="text-fields-legend">
{{yield}}
</legend>
<div class="row">
{{#each textFields key="id" as |field index|}}
<div class="col-xs-12 p-t-xs text-input-row">
{{input data-test-multiple-textbox-input-index=index class="form-control ember-text-field" type="text" placeholder=placeholder value=field.value change=(action 'onChange') }}
{{#if (and (gt textFields.length 1) (gt textFieldsLastIndex index) )}}
<button data-test-multiple-textbox-input-remove={{index}} class="btn btn-danger btn-small" onClick={{action 'removeTextField' index}} aria-label='Remove text field'>{{fa-icon 'minus'}}</button>
{{else}}
<button data-test-multiple-textbox-input-add={{index}} class="btn btn-success btn-small" onClick={{action 'addTextField'}} aria-label='Add another text field'>{{fa-icon 'plus'}}</button>
{{/if}}
</div>
{{/each}}
</div>
</fieldset>
| <fieldset>
<legend class="text-fields-legend">
{{yield}}
</legend>
<div class="row">
{{#each textFields key="id" as |field index|}}
<div data-test-multiple-textbox-index={{index}} class="col-xs-12 p-t-xs text-input-row">
{{input class="form-control ember-text-field" type="text" placeholder=placeholder value=field.value change=(action 'onChange') }}
{{#if (and (gt textFields.length 1) (gt textFieldsLastIndex index) )}}
<button data-test-multiple-textbox-input-remove={{index}} class="btn btn-danger btn-small" onClick={{action 'removeTextField' index}} aria-label='Remove text field'>{{fa-icon 'minus'}}</button>
{{else}}
<button data-test-multiple-textbox-input-add={{index}} class="btn btn-success btn-small" onClick={{action 'addTextField'}} aria-label='Add another text field'>{{fa-icon 'plus'}}</button>
{{/if}}
</div>
{{/each}}
</div>
</fieldset>
| Add data-test attr to multi-text input wrapping div | Add data-test attr to multi-text input wrapping div
| Handlebars | apache-2.0 | CenterForOpenScience/ember-preprints,CenterForOpenScience/ember-preprints |
77ceee8e8ac38e8b72a9b56074063d4eee32c7b6 | index.hbs | index.hbs | {{!< default}}
<h1 style="text-align: center;" id="posts-headline">Writings.</h1>
<ol id="posts-list">
{{#foreach posts}}
<li>
<a href="{{url}}" title="Read more about '{{title}}'">{{title}}</a>
<time datetime="{{date format="YYYY-MM-DDTHH:MM"}}">{{date format="DD MMM YYYY"}}</time>
<span class="post tags">{{tags separator=" "}}</span>
</li>
{{/foreach}}
</ol>
{{pagination}}
| {{!< default}}
<h1 style="text-align: center;" id="posts-headline">Writings.</h1>
<ol id="posts-list">
{{#foreach posts}}
<li>
<a href="{{url}}" title="Read more about '{{title}}'">{{title}}</a>
<time datetime="{{date format="DD MMM YYYY"}}">{{date format="DD MMM YYYY"}}</time>
<span class="post tags">{{tags separator=" "}}</span>
</li>
{{/foreach}}
</ol>
{{pagination}}
| Use the same date format | Use the same date format
| Handlebars | mit | BradMcGonigle/uno-zen,Kikobeats/uno-zen,robincsamuel/uno-zen,BradMcGonigle/uno-zen,hmobius/uno-zen,bestswifter/uno-zen,JIANHUI2015/uno-zen,meal/uno-zen,Kikobeats/uno-zen,robincsamuel/uno-zen,JIANHUI2015/uno-zen,meal/uno-zen,bestswifter/uno-zen,hmobius/uno-zen |
030f4290b1b04579fa5bad63279a5a5ba312bb21 | layouts/partials/secondary-download-matrix.hbs | layouts/partials/secondary-download-matrix.hbs | <section>
<h2>{{additional.headline}}</h2>
<table class="download-matrix full-width">
<tbody>
<tr>
<th>{{additional.SmartOSBinaries}}</th>
<td><a href="https://nodejs.org/dist/{{version.node}}/node-{{version.node}}-sunos-x64.tar.xz">64-bit</a></td>
</tr>
<tr>
<th>{{additional.DockerImage}}</th>
<td><a href="https://hub.docker.com/_/node/">{{additional.officialDockerImage}}</a></td>
</tr>
<tr>
<th>{{additional.LinuxPowerSystems}}</th>
<td><a href="https://nodejs.org/dist/{{version.node}}/node-{{version.node}}-linux-ppc64le.tar.xz">64-bit</a></td>
</tr>
<tr>
<th>{{additional.LinuxSystemZ}}</th>
<td><a href="https://nodejs.org/dist/{{version.node}}/node-{{version.node}}-linux-s390x.tar.xz">64-bit</a></td>
</tr>
<tr>
<th>{{additional.AIXPowerSystems}}</th>
<td><a href="https://nodejs.org/dist/{{version.node}}/node-{{version.node}}-aix-ppc64.tar.gz">64-bit</a></td>
</tr>
</tbody>
</table>
{{> download-list }}
</section>
| <section>
<h2>{{additional.headline}}</h2>
<table class="download-matrix full-width">
<tbody>
<tr>
<th>{{additional.DockerImage}}</th>
<td><a href="https://hub.docker.com/_/node/">{{additional.officialDockerImage}}</a></td>
</tr>
<tr>
<th>{{additional.LinuxPowerSystems}}</th>
<td><a href="https://nodejs.org/dist/{{version.node}}/node-{{version.node}}-linux-ppc64le.tar.xz">64-bit</a></td>
</tr>
<tr>
<th>{{additional.LinuxSystemZ}}</th>
<td><a href="https://nodejs.org/dist/{{version.node}}/node-{{version.node}}-linux-s390x.tar.xz">64-bit</a></td>
</tr>
<tr>
<th>{{additional.AIXPowerSystems}}</th>
<td><a href="https://nodejs.org/dist/{{version.node}}/node-{{version.node}}-aix-ppc64.tar.gz">64-bit</a></td>
</tr>
</tbody>
</table>
{{> download-list }}
</section>
| Remove SmartOS from download page | Remove SmartOS from download page
We stopped releasing Node.js binaries on SmartOS in Node.js 14 so
the link on both LTS and Curent download pages leads to a 404 page.
| Handlebars | mit | nodejs/new.nodejs.org,nodejs/new.nodejs.org |
077ec3fd92b29a52423612fa5bc0099cd430a189 | app/templates/CheckBoxLayer.hbs | app/templates/CheckBoxLayer.hbs | <label><input type="checkbox" {{#if visible}}checked=true {{/if}}/>
<span class="icon-group">
<i class="fa fa-sort"></i>
<i class="fa fa-square" style="color: {{color}}"></i>
<i class="fa fa-adjust" data-toggle="popover" data-content="n"></i>
</span>
{{name}}
</label>
| <span class="icon-group">
<i class="fa fa-sort"></i>
<i class="fa fa-square" style="color: {{color}}"></i>
<i class="fa fa-adjust" data-toggle="popover" data-content="n"></i>
</span>
<label><input type="checkbox" {{#if visible}}checked="checked"{{/if}}/> {{name}}</label>
| Rework label to not hinder clicking the icons | Rework label to not hinder clicking the icons
Signed-off-by: Marko Locher <9efe9a5a1da5f41a4eb7599f2715dc24abf5bbc8@locher.at>
| Handlebars | mit | EOX-A/EOxClient |
b77d767be50471e10e98010faad512ee869ad02d | app/assets/javascripts/templates/components/code-area.hbs | app/assets/javascripts/templates/components/code-area.hbs | <div>
<div class="row">
<div class="large-11 columns">
<div class="button small" {{action 'compileCode'}}>Run code</div>
<div id="code-area"></div>
</div>
</div>
<div class="row">
<div class="large-11 columns">
<div class="output-panel">
<h4>Result</h4>
<ol>
{{#each result in endResult}}
<li>{{result}}</li>
{{/each}}
</ol>
</div>
</div>
</div>
</div> | <div>
<div class="row">
<div class="large-11 columns">
<div id="code-area"></div>
<div class="button small" {{action 'compileCode'}}>Run code</div>
</div>
</div>
<div class="row">
<div class="large-11 columns">
<div class="output-panel">
<h4>Result</h4>
<ol>
{{#each result in endResult}}
<li>{{result}}</li>
{{/each}}
</ol>
</div>
</div>
</div>
</div> | Move button to more sensible location | Move button to more sensible location
| Handlebars | mit | mfeckie/try-ruby-railsgirls-edition,mfeckie/try-ruby-railsgirls-edition |
c0f36f7fbfcffcdb32baa6720471056e5cbb3f48 | tests/dummy/app/templates/application.hbs | tests/dummy/app/templates/application.hbs | <paper-drawer-panel>
<paper-header-panel drawer>
<paper-toolbar>
<div>Elements</div>
</paper-toolbar>
<paper-menu>
{{#link-to 'index' tabindex="-1"}}
<paper-item>Home</paper-item>
{{/link-to}}
{{#each snippets.snippets as |snippet|}}
{{#link-to snippet.name tabindex="-1"}}
<paper-item>{{snippet.name}}</paper-item>
{{/link-to}}
{{/each}}
</paper-menu>
</paper-header-panel>
<paper-header-panel main>
<paper-toolbar>
<paper-icon-button icon="menu" paper-drawer-toggle></paper-icon-button>
<div>Ember Polymer Paper demo</div>
</paper-toolbar>
<div class="outlet">
{{outlet}}
</div>
</paper-header-panel>
</paper-drawer-panel>
| <paper-drawer-panel>
<paper-header-panel drawer>
<paper-toolbar>
<div>Elements</div>
</paper-toolbar>
<paper-menu>
{{#link-to 'index' tabindex="-1"}}
<paper-item>Home</paper-item>
{{/link-to}}
{{#each snippets.snippets as |snippet|}}
{{#link-to snippet.name tabindex="-1"}}
<paper-item>{{snippet.name}}</paper-item>
{{/link-to}}
{{/each}}
</paper-menu>
</paper-header-panel>
<paper-header-panel main>
<paper-toolbar>
<paper-icon-button icon="menu" paper-drawer-toggle></paper-icon-button>
<span class="title">Ember Polymer Paper demo</span>
<a href="https://github.com/dunnkers/ember-polymer-paper" tabIndex="-1">
<paper-icon-button src="images/github.png" class="github-logo">
</paper-icon-button>
</a>
</paper-toolbar>
<div class="outlet">
{{outlet}}
</div>
</paper-header-panel>
</paper-drawer-panel>
| Add github logo and link to repo. ✨ | Add github logo and link to repo. ✨
Closes #2.
| Handlebars | mit | dunnkers/ember-polymer-paper,dunnkers/ember-polymer-paper |
539cc7750abf8119b9b5deaca742d735fe22d33b | tests/dummy/app/templates/application.hbs | tests/dummy/app/templates/application.hbs | <div class="container">
<div class="page-header">
<h1>ivy-tabs</h1>
</div>
<div class="row">
<div class="col-sm-9">
{{outlet}}
</div>
<div class="col-sm-3">
<div class="list-group">
{{link-to "Basic Example" "index" class="list-group-item"}}
{{link-to "Query Parameters Example" "query-params" class="list-group-item"}}
{{link-to "Dynamic Tabs Example" "dynamic-tabs" class="list-group-item"}}
</div>
</div>
</div>
<hr>
<p>View source on <a href="https://github.com/IvyApp/ivy-tabs">GitHub</a>.</p>
</div>
| <div class="container">
<div class="page-header">
<h1>ivy-tabs</h1>
</div>
<div class="row">
<div class="col-sm-9">
{{outlet}}
</div>
<div class="col-sm-3">
<div class="list-group">
{{link-to "Basic Example" "index" class="list-group-item"}}
{{link-to "Query Parameters Example" "query-params" class="list-group-item"}}
{{link-to "Dynamic Tabs Example" "dynamic-tabs" class="list-group-item"}}
</div>
</div>
</div>
<hr>
<p>
Version <a href="https://github.com/IvyApp/ivy-tabs/releases/tag/v{{app-version hideSha=true}}">{{app-version hideSha=true}}</a>.
View source on <a href="https://github.com/IvyApp/ivy-tabs">GitHub</a>.
</p>
</div>
| Add version and link to gh-page deploy | Add version and link to gh-page deploy
[ci skip]
| Handlebars | mit | IvyApp/ivy-tabs,IvyApp/ivy-tabs |
6ec58d366dd8deba0a07a047f3e26551b3deb042 | app/views/index.handlebars | app/views/index.handlebars | <div id="header" visibility="hidden" class="introheader">
<h1>{{title }}</h1>
<p>Libbie makes logging your library of books in Goodreads faster and easier. Simply sign in with Goodreads and get started. There's no registration, fees, and Libbie will never send you emails.</p>
<p class="introbutton"><a href="/auth/goodreads">Click here to sign in with Goodreads</a></p>
<p>
<h2>How it works</h2>
It's simple: enter in the ISBN number for your book and hit <kbd class="light">enter</kbd>. Boom! It's added to Goodreads.
</p>
</p>But wait! There's more. Consider getting a cheap barcode scanner, which makes the process as easy as plugging in the scanner and scanning the barcode on the back of each of your books. You can log your whole library in minutes like this. Want more info? The intro video below will tell you all about it.
<h2>2 Minute Introduction Video</h2>
<strong>Video Here</strong>
</p>
</div>
<div id="poweredBy">
<a href="https://michaelblouin.ca" target="_blank" title="Powered by MichaelBlouin.ca">Powered by MichaelBlouin.ca</a>
</div> | <div id="header" visibility="hidden" class="introheader">
<h1>{{title }}</h1>
<p>Libbie makes logging your library of books in Goodreads faster and easier. Simply sign in with Goodreads and get started. There's no registration, fees, and Libbie will never send you emails.</p>
<p class="introbutton"><a href="/auth/goodreads">Click here to sign in with Goodreads</a></p>
<p>
<h2>How it works</h2>
It's simple: enter in the ISBN number for your book and hit <kbd class="light">enter</kbd>. Boom! It's added to Goodreads.
</p>
</p>But wait! There's more. Consider getting a cheap barcode scanner (<a href="http://amzn.to/1Ub91jt" title="USB Barcode Scanner" target="_blank">I have this one</a> which required no configuration to work with Libbie), which makes the process as easy as plugging in the scanner and scanning the barcode on the back of each of your books. You can log your whole library in minutes like this. Want more info? The intro video below will tell you all about it.
<h2>2 Minute Introduction Video</h2>
<strong>Video Here</strong>
</p>
</div>
<div id="poweredBy">
<a href="https://michaelblouin.ca" target="_blank" title="Powered by MichaelBlouin.ca">Powered by MichaelBlouin.ca</a>
</div> | Add amazon link for scanner | Add amazon link for scanner
| Handlebars | apache-2.0 | Mobius5150/libbie,Mobius5150/libbie |
648fb3a01af376fe1522886dbd8ed0508366805c | src/pages/tests/lists.hbs | src/pages/tests/lists.hbs | ---
title: List Tests
layout: blank
---
<div class="drizzle-Space-inset-m">
<ul class="sprk-b-List">
<li>Unordered Item</li>
<li>Unordered Item</li>
<li>Unordered Item</li>
</ul>
<ol class="sprk-b-List">
<li>Ordered Item</li>
<li>Ordered Item</li>
<li>Ordered Item</li>
<li>Ordered Item</li>
<li>Ordered Item</li>
<li>Ordered Item</li>
<li>Ordered Item</li>
<li>Ordered Item</li>
<li>Ordered Item</li>
<li>Ordered Item</li>
<li>Ordered Item</li>
<li>Ordered Item</li>
<li>Ordered Item</li>
<li>Ordered Item</li>
<li>Ordered Item</li>
<li>Ordered Item</li>
<li>Ordered Item</li>
<li>Ordered Item</li>
</ol>
</div>
| ---
title: List Tests
layout: blank
---
<div class="drizzle-Space-inset-m">
<ul class="sprk-b-List">
<li>Unordered Item</li>
<li>Unordered Item</li>
<li>Unordered Item</li>
</ul>
<ol class="sprk-b-List">
<li>Ordered Item</li>
<li>Ordered Item</li>
<li>Ordered Item</li>
<li>Ordered Item</li>
<li>Ordered Item</li>
<li>Ordered Item</li>
<li>Ordered Item</li>
<li>Ordered Item</li>
<li>Ordered Item</li>
<li>Ordered Item</li>
<li>Ordered Item</li>
<li>Ordered Item</li>
<li>Ordered Item</li>
<li>Ordered Item</li>
<li>Ordered Item</li>
<li>Ordered Item</li>
<li>Ordered Item</li>
<li>Ordered Item</li>
</ol>
<ul class="sprk-b-List sprk-b-List--bare">
<li>Bare List Item</li>
<li>Bare List Item</li>
<li>Bare List Item</li>
</ul>
</div>
| Update tests with bare list | Update tests with bare list
| Handlebars | mit | sparkdesignsystem/spark-design-system,sparkdesignsystem/spark-design-system,sparkdesignsystem/spark-design-system,sparkdesignsystem/spark-design-system |
94cbfc1941f54d341307b30cc2396bdaf1294956 | templates/pages/home.hbs | templates/pages/home.hbs | <div class="home-page">
<div class="row">
<div class="col-lg-6">Content separated</div>
<div class="col-lg-6">In two equally wide columns</div>
</div>
<hr/>
<div class="row">
<div class="col-lg-3">Different</div>
<div class="col-lg-4">Column</div>
<div class="col-lg-5">Widths</div>
</div>
</div>
| <div class="home-page">
<div class="row">
<div class="col-xs-12 col-sm-6">Content separated</div>
<div class="col-xs-12 col-sm-6">In two equally wide columns</div>
</div>
<hr/>
<div class="row">
<div class="col-xs-12 col-sm-3">Different</div>
<div class="col-xs-12 col-sm-4">Column</div>
<div class="col-xs-12 col-sm-5">Widths</div>
</div>
</div>
| Add more example responsive column definitions | Add more example responsive column definitions
| Handlebars | mit | lxanders/node-express-base,lxanders/node-express-base |
9bf8c606d8a2763ee0c55c9f123a7eec5f8fd209 | templates/emails/collective.expense.paid.for.host.hbs | templates/emails/collective.expense.paid.for.host.hbs | Subject: Expense paid on {{collective.name}}: {{{currency transaction.netAmountInCollectiveCurrency currency=transaction.currency}}} for {{transaction.description}}
{{> header}}
<center>
<h3> Hi there! Just a note to let you know that an expense was paid in {{collective.name}}. </h3>
<h2>{{{currency transaction.netAmountInCollectiveCurrency currency=transaction.currency precision=2}}}</h2>
<div>{{transaction.description}}</div>
<div>To: {{fromCollective.name}}</div>
{{#if payoutMethod}}
{{#ifCond payoutMethod.type '===' 'PAYPAL'}}
<div>Paypal Email: {{payoutMethod.data.email}}</div>
{{/ifCond}}
{{/if}}
<br /><br />
<a href="{{config.host.website}}/{{collective.slug}}/expenses" class="btn"><div>View Latest Expenses</div></a>
</center>
{{> footer}} | Subject: Expense paid on {{collective.name}}: {{{currency transaction.netAmountInCollectiveCurrency currency=transaction.currency}}} for {{transaction.description}}
{{> header}}
<center>
<h3> Hi there! Just a note to let you know that an expense was paid in {{collective.name}}. </h3>
<h2>{{{currency transaction.netAmountInCollectiveCurrency currency=transaction.currency precision=2}}}</h2>
<div>{{transaction.description}}</div>
<div>To: {{fromCollective.name}}</div>
{{#if payoutMethod}}
{{#ifCond payoutMethod.type '===' 'PAYPAL'}}
<div>Paypal Email: {{payoutMethod.data.email}}</div>
{{/ifCond}}
{{/if}}
<br /><br />
<a href="{{config.host.website}}/{{collective.slug}}/expenses/{{expense.id}}" class="btn"><div>View Expense</div></a>
</center>
{{> footer}} | Add link to expense to notification email | Add link to expense to notification email
| Handlebars | mit | OpenCollective/opencollective-api,OpenCollective/opencollective-api,OpenCollective/opencollective-api |
495166946942c2c3425dbb3abfb4efcf58dde006 | views/add.handlebars | views/add.handlebars | <h1>Add a New Element</h1>
<form>
<fieldset>
<div>
<label for="elementName">Name</label>
<input name="elementName" type="text" />
</div>
<div>
<label for="elementDescription">Description</label>
<textarea name="elementDescription"></textarea>
</div>
<div>
<input type="submit" value="Submit" />
</div>
</fieldset>
</form>
| <h1>Add a New Element</h1>
<form method="POST">
<fieldset>
<div>
<label for="elementName">Name</label>
<input name="elementName" type="text" />
</div>
<div>
<label for="elementDescription">Description</label>
<textarea name="elementDescription"></textarea>
</div>
<div>
<input type="submit" value="Submit" />
</div>
</fieldset>
</form>
| Set the Add form to POST. | Set the Add form to POST.
| Handlebars | mit | stevecochrane/express-web-app-example,stevecochrane/express-web-app-example |
2ba81a317be4844520ee3fdcf9ec1f6af510ae95 | theme/partials/header.hbs | theme/partials/header.hbs | <div role='banner' class="Yayul_header {{#if @blog.cover}}" style="background-image: url({{@blog.cover}}){{else}}no-cover{{/if}}">
<div class="Yayul_header__content">
{{#if @blog.logo}}
<a class="Yayul_header__logo" href="{{@blog.url}}">
<img src="{{@blog.logo}}" alt="{{@blog.title}}" />
</a>
{{/if}}
<h1 class="Yayul_header__title">
<a title="{{@blog.title}}" href='{{@blog.url}}'>
{{{@blog.title}}}
</a>
</h1>
<p class="Yayul_header__description">
<a title="{{@blog.title}}" href='{{@blog.url}}'>
{{@blog.description}}
</a>
</p>
</div>
<a href="#content">
<i class="fa fa-angle-down Yayul_icon Yayul_header__arrow"></i>
</a>
</div>
| <div role='banner' class="Yayul_header
{{#if image}} style="background-image: url({{image}})
{{else if @blog.cover}} style="background-image: url({{@blog.cover}})
{{else}}no-cover{{/if}}">
<div class="Yayul_header__content">
{{#if @blog.logo}}
<a class="Yayul_header__logo" href="{{@blog.url}}">
<img src="{{@blog.logo}}" alt="{{@blog.title}}" />
</a>
{{/if}}
<h1 class="Yayul_header__title">
<a title="{{@blog.title}}" href='{{@blog.url}}'>
{{{@blog.title}}}
</a>
</h1>
<p class="Yayul_header__description">
<a title="{{@blog.title}}" href='{{@blog.url}}'>
{{@blog.description}}
</a>
</p>
</div>
<a href="#content">
<i class="fa fa-angle-down Yayul_icon Yayul_header__arrow"></i>
</a>
</div>
| Add option to use different cover image per post | Add option to use different cover image per post
| Handlebars | mit | datyayu/yayul-theme,datyayu/yayul-theme |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.