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
6f9c38247b37f98a00e01ed669717a0b0031b650
handlebars/partials/base/body.hbs
handlebars/partials/base/body.hbs
{{! The partial can be overridden to render the main content. It is rendered inside a Bootstrap-container. @public }}
{{! The partial can be overridden to render the main content. It is rendered inside a Bootstrap-container. @api public }}
Comment changed for test with "verb"
Comment changed for test with "verb"
Handlebars
mit
bootprint/bootprint-base,bootprint/bootprint-base,nknapp/bootprint-base,nknapp/bootprint-base
d25245d304a18dc0723e92aaa158f348e876e48d
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}}"> <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}}">&raquo;</a></p> </section> <footer class="post-meta"> {{#if primary_author.profile_image}}<img class="author-thumb" src="{{primary_author.profile_image}}" alt="{{primary_author.name}}" nopin="nopin" />{{/if}} {{primary_author}} {{tags prefix=" on "}} <time class="post-date" datetime="{{date format='YYYY-MM-DD'}}">{{date format="DD MMMM YYYY"}}</time> <span class="disqus-comment-count" data-disqus-identifier="ghost-{{comment_id}}">0 Comments</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}}">&raquo;</a></p> </section> <footer class="post-meta"> {{#if primary_author.profile_image}}<img class="author-thumb" src="{{primary_author.profile_image}}" alt="{{primary_author.name}}" nopin="nopin" />{{/if}} {{primary_author.name}} {{tags prefix=" on "}} <time class="post-date" datetime="{{date format='YYYY-MM-DD'}}">{{date format="DD MMMM YYYY"}}</time> <span class="disqus-comment-count" data-disqus-identifier="ghost-{{comment_id}}">0 Comments</span> </footer> </article> {{/foreach}} {{! Previous/next page links - displayed on every page }} {{pagination}}
Fix author name on the home page
Fix author name on the home page
Handlebars
mit
kevinkuszyk/kevinkuszyk.com-casper-theme,kevinkuszyk/kevinkuszyk.com-casper-theme
d9efcc2ff6e127206286479872d05a629f2f6552
default.hbs
default.hbs
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <title> {{meta_title}} </title> <meta name="description" content="{{meta_description}}" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <link href="{{asset "images/favicon.ico"}}" rel="shortcut icon" /> <link href="//fonts.googleapis.com/css?family=Antic+Slab" rel="stylesheet" /> <link href="{{asset "css/styles.min.css"}}" rel="stylesheet" /> {{ghost_head}} </head> <body itemscope itemtype="http://schema.org/Blog"> <header class="header"> <a href="{{@blog.url}}" class="header__branding"> {{#if @blog.logo}} <img src="{{@blog.logo}}" class="header__branding__logo" width="120" height="120" /> {{/if}} <h1 class="header__branding__title" itemprop="name"> {{@blog.title}} </h1> </a> {{> nav}} </header> {{{body}}} {{> footer}} <script src="{{asset "js/scripts.min.js"}}" async="async"> </script> </body> </html>
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <title> {{meta_title}} </title> <meta name="description" content="{{meta_description}}" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <link href="//fonts.googleapis.com/css?family=Antic+Slab" rel="stylesheet" /> <link href="{{asset "css/styles.min.css"}}" rel="stylesheet" /> {{ghost_head}} </head> <body itemscope itemtype="http://schema.org/Blog"> <header class="header"> <a href="{{@blog.url}}" class="header__branding"> {{#if @blog.logo}} <img src="{{@blog.logo}}" class="header__branding__logo" width="120" height="120" /> {{/if}} <h1 class="header__branding__title" itemprop="name"> {{@blog.title}} </h1> </a> {{> nav}} </header> {{{body}}} {{> footer}} <script src="{{asset "js/scripts.min.js"}}" async="async"> </script> </body> </html>
Remove favicon from template as handled by express
Remove favicon from template as handled by express
Handlebars
isc
colinmeinke/kampot,colinmeinke/kampot
47e9addcdb8c6d6d76fcdd20110663fec12614b5
client/app/templates/components/order-preview.hbs
client/app/templates/components/order-preview.hbs
{{#link-to 'new-portion-order' order class="order-preview"}} <div class="order-preview__row"> <div class="order-preview__place">{{order.vendor.title}}/{{order.location}}</div> <time class="order-preview__time">{{order.time}}</time> </div> <div class="order-preview__row"> <div class="order-preview__manager">{{order.manager}}</div> </div> {{/link-to}}
{{#link-to 'new-portion-order' order class="order-preview"}} <div class="order-preview__row"> <div class="order-preview__place">{{order.vendor.title}}/{{order.location}}</div> <time class="order-preview__time">{{order.time}}</time> </div> <div class="order-preview__row"> <div class="order-preview__manager">{{order.manager.displayName}}</div> </div> {{/link-to}}
Use computed account display name in templates
Use computed account display name in templates
Handlebars
mit
yandex-shri-minsk-2016/yummy-time,yandex-shri-minsk-2016/yummy-time,yandex-shri-minsk-2016/yummy-time
9e848d84317bda82d8c517ca607506af71f5b67c
app/templates/favorites.hbs
app/templates/favorites.hbs
<div class="favorites-wrapper container"> <div class="row"> <ul class="col s12"> {{#each model as |fav|}} {{fav-head fav=fav removeFav='removeFromFavorites'}} {{/each}} </ul> <div class=""> {{outlet}} </div> </div> </div>
<div class="favorites-wrapper container"> <div class="row"> <h2 class="page-title text-center">Favorite Journeys</h2> <ul class="col s12"> {{#each model as |fav|}} {{fav-head fav=fav removeFav='removeFromFavorites'}} {{/each}} </ul> <div class="md-modal-cont"> {{outlet}} </div> </div> </div>
Add title to favorite journeys page
feat: Add title to favorite journeys page
Handlebars
mit
pe1te3son/transportme,pe1te3son/transportme
85064ed6fefc833fe9b6db760d86b8e13ed5aeff
templates/dhcpd.hbs
templates/dhcpd.hbs
ddns-update-style none; default-lease-time 600; max-lease-time 7200; authoritative; # Use this to send dhcp log messages to a different log file (you also # have to hack syslog.conf to complete the redirection). log-facility local7; {{#each subnets}} subnet {{join address '.'}} netmask {{join netmask '.'}} { range {{join range.start '.'}} {{join range.end '.'}}; option broadcast-address {{join broadcast_address '.'}}; option routers {{join router_address '.'}}; } {{/each}}
ddns-update-style none; default-lease-time 600; max-lease-time 7200; authoritative; # Use this to send dhcp log messages to a different log file (you also # have to hack syslog.conf to complete the redirection). log-facility local7; {{#each subnets}} subnet {{join address '.'}} netmask {{join netmask '.'}} { range {{join range.start '.'}} {{join range.end '.'}}; option broadcast-address {{join broadcast_address '.'}}; option routers {{join router_address '.'}}; option domain-name-servers 8.8.8.8, 8.8.4.4; } {{/each}}
Add domain-name-servers option to DHCP subnets
Add domain-name-servers option to DHCP subnets
Handlebars
mit
pincio/jenny,pincio/jenny,pincio/jenny
ed38acc6e4d57e8779d600b2d46ced0ce6c7250b
views/doc/index.handlebars
views/doc/index.handlebars
<div class="row"> <div class="col-md-12"> {{{nav}}} <p><a href="{{BASE_URI}}">&uarr; up to Pubrules home</a></p> <h2>Pubrules documentation</h2> <h3 id="publication"><a href="#publication">Publication rules</a></h3> <ul> {{#each profiles}} <li><a href="{{../BASE_URI}}doc/rules/?profile={{this.abbr}}">{{this.name}} ({{this.abbr}})</a></li> {{/each}} </ul> <h3 id="transitions"><a href="#transitions">Transitions</a></h3> <p>See the <a href="http://www.w3.org/Guide/transitions2015">transition guide</a></p> </div> </div>
<div class="row"> <div class="col-md-12"> {{{nav}}} <p><a href="{{BASE_URI}}">&uarr; up to Pubrules home</a></p> <h2>Pubrules documentation</h2> <h3 id="publication"><a href="#publication">Publication rules</a></h3> <ul> {{#each profiles}} <li><a href="{{../BASE_URI}}doc/rules/?profile={{this.abbr}}">{{this.name}} ({{this.abbr}})</a></li> {{/each}} </ul> <h3 id="transitions"><a href="#transitions">Transitions</a></h3> <p>See the <a href="http://www.w3.org/Guide/transitions">transition guide</a></p> </div> </div>
Use latest version link to transition requirements
Use latest version link to transition requirements
Handlebars
mit
w3c/specberus,w3c/specberus,w3c/specberus
c84747234f52cac359c845d9de768da3485fdacd
src/layouts/hybrid.hbs
src/layouts/hybrid.hbs
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <!--[if !mso]><!--> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <!--<![endif]--> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title></title> <link rel="stylesheet" type="text/css" href="../src/css/styles.css" /> <!--[if (gte mso 9)|(IE)]> <style type="text/css"> table {border-collapse: collapse;} </style> <![endif]--> </head> <body> <center class="wrapper"> <div class="webkit"> <!--[if (gte mso 9)|(IE)]> <table width="600" align="center"> <tr> <td> <![endif]--> <table class="outer" align="center"> {{ body }} </table> <!--[if (gte mso 9)|(IE)]> </td> </tr> </table> <![endif]--> </div> </center> </body> </html>
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <!--[if !mso]><!--> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <!--<![endif]--> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title></title> <link rel="stylesheet" type="text/css" href="../src/css/styles.css" /> <!--[if (gte mso 9)|(IE)]> <style type="text/css"> table {border-collapse: collapse;} </style> <![endif]--> </head> <body> <center class="wrapper"> <div class="webkit"> <!--[if (gte mso 9)|(IE)]> <table width="600" align="center"> <tr> <td> <![endif]--> <table class="outer" align="center"> {{ body }} </table> <!--[if (gte mso 9)|(IE)]> </td> </tr> </table> <![endif]--> </div> </center> </body> </html>
Use html5 doctype for html buttons
Use html5 doctype for html buttons
Handlebars
mit
bfulop/grunt-email-workflow-hybrid-layout,bfulop/grunt-email-workflow-hybrid-layout
cde2687f2bf0d81ae1e70b2464453c4b8246602d
app/views/layouts/main.handlebars
app/views/layouts/main.handlebars
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width"> <title>OpenGraph Spy</title> <link rel="stylesheet" href="/css/bootstrap.css"> <link rel="stylesheet" href="/css/style.css"> <link rel="icon" type="image/x-icon" href="/favicon.ico"> <link rel="shortcut icon" type="image/x-icon" href="/favicon.ico"> {{#if ENV_DEVELOPMENT}} <script src="http://localhost:35729/livereload.js"></script> {{/if}} </head> <body> {{{body}}} <footer class="footer"> <small><p>&copy; 2017 Brian Holley</p></small> <a href="https://github.com/brianholley/opengraph-spy"> <div class="forkme">Fork me on GitHub</div> </a> </footer> </body> </html>
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width"> <title>OpenGraph Spy</title> <link rel="stylesheet" href="/css/bootstrap.css"> <link rel="stylesheet" href="/css/style.css"> <link rel="icon" type="image/x-icon" href="/favicon.ico"> <link rel="shortcut icon" type="image/x-icon" href="/favicon.ico"> <meta property="og:type" content="website" /> <meta property="og:title" content="OpenGraph Spy" /> <meta property="og:image" content="https://ogspy.tech/img/logo.png" /> <meta property="og:url" content="https://ogspy.tech" /> {{#if ENV_DEVELOPMENT}} <script src="http://localhost:35729/livereload.js"></script> {{/if}} </head> <body> {{{body}}} <footer class="footer"> <small><p>&copy; 2017 Brian Holley</p></small> <a href="https://github.com/brianholley/opengraph-spy"> <div class="forkme">Fork me on GitHub</div> </a> </footer> </body> </html>
Add open graph metadata headers
Add open graph metadata headers
Handlebars
mit
brianholley/opengraph-spy
d2c972f744c484e54683557ffe04923934599d47
app/assets/javascripts/templates/entries/entryShow.hbs
app/assets/javascripts/templates/entries/entryShow.hbs
<div class="entry" id="{{slug}}"> <div class="info"> <h1 class="title">{{title}}</h1> <h3 class="blogger-name"> <a href="{{blogger.blogUrl}}">{{blogger.name}}</a>, <a href="/semesters/{{semesterSlug}}">{{semesterName}}</a> </h3> <h4 class="published-date"> <span class="glyphicon glyphicon-calendar"></span> {{formattedDateTime}} </h4> </div> <p class="content">{{{content}}}</p> <h4 class="originally-published">Originally published here: <a href="{{blogUrl}}">{{blogUrl}}</a></h5> </div>
<div class="entry" id="{{slug}}"> <div class="info"> <h1 class="title">{{title}}</h1> <h3 class="blogger-name"> <a href="{{blogger.blogUrl}}">{{blogger.name}}</a>, <a href="/semesters/{{semesterSlug}}">{{semesterName}}</a> </h3> <h4 class="published-date"> <span class="glyphicon glyphicon-calendar"></span> {{formattedDateTime}} </h4> </div> <p class="content">{{{content}}}</p> <div class="tags"> <h3>Tags</h3> <ul class="tags-list list-inline"> {{#each tags}} <li class="tag well well-sm">{{tag}}</li> {{/each}} </ul> </div> <h4 class="originally-published">Originally published here: <a href="{{blogUrl}}">{{blogUrl}}</a></h5> </div>
Revert "Don't display tags, to avoid confusion"
Revert "Don't display tags, to avoid confusion" This reverts commit de84ef7c1fc881e2c3f35a31de55767a2ad03a7d.
Handlebars
mit
california-pizza-kitchen/flatiron-blogs,california-pizza-kitchen/flatiron-blogs
6f1741c574d78f70636713465328dab4a1b2a46f
app/templates/custom/profile-link.hbs
app/templates/custom/profile-link.hbs
{{#link-to "participants.profile" record.shortId}}View profile{{/link-to}} <!-- TODO: Make this a button -->
{{#link-to "participants.profile" record}}View profile{{/link-to}} <!-- TODO: Make this a button -->
Change link to use long ID
Change link to use long ID
Handlebars
apache-2.0
abought/experimenter,abought/experimenter
6142cd2317498b144e400f042941f2dcbd005eca
assets/sass/templates/breadcrumbs.hbs
assets/sass/templates/breadcrumbs.hbs
<nav class="breadcrumbs" aria-label="breadcrumb"> <div class="wrapper"> <ul> <li><a href="#" title="Home">Home</a></li> <li><a href="#" title="Menu1">Menu1</a></li> <li>Menu2</li> </ul> </div> </nav>
<nav class="breadcrumbs" aria-label="breadcrumb"> <div class="wrapper"> <ul> <li><a href="#" title="Home">Home</a></li> <li><a href="#" title="Menu1">Menu1</a></li> <li>Menu2</li> </ul> </div> </nav> <hr> <div class="bg-navy"> <nav class="breadcrumbs--inverted" aria-label="breadcrumb"> <ul> <li><a href="#" title="Home">Home</a></li> <li><a href="#" title="Menu1">Menu1</a></li> <li>Menu2</li> </ul> </nav> </div>
Update the Breadcrumbs code example to include an inverted version
Update the Breadcrumbs code example to include an inverted version
Handlebars
mit
AusDTO/gov-au-ui-kit,AusDTO/gov-au-ui-kit,AusDTO/gov-au-ui-kit
7a9c15eeb636fc6c9683cc769bdad891f67e3fd5
app/templates/browse-preprints.hbs
app/templates/browse-preprints.hbs
<body role="document"> <div class="container space-top space-bottom"> {{search-preprints}} </div> <div class="container" id="browse"> <div class="row"> <div class="col-lg-4"> <!--"filter" is defined in the browse-preprints route--> <!--the taxonomy-tree calls sendAction("filter") with arguments that aren't explicitly defined here--> {{taxonomy-tree filter="filter"}} <div> <!--SUBJECT TAGS DIV--> <!--SUBJECTS BUTTONS--> <h6>Tags</h6> <button type="button" class="btn btn-info">talk</button> <button type="button" class="btn btn-info">CREP</button> <button type="button" class="btn btn-info">Poster</button> <button type="button" class="btn btn-info">Randolph-Macon</button> <button type="button" class="btn btn-info">replication</button> </div> <!--END SUBJECT TAGS DIV --> </div> <div class="col-lg-8" id="preprintList"> {{#each filteredPreprints as |preprintEntry|}} {{preprint-entry preprint=preprintEntry}} {{/each}} </div> </div> </div> </body>
<body role="document"> <div class="container space-top space-bottom"> {{search-preprints}} </div> <div class="container" id="browse"> <div class="row"> <div class="col-lg-4"> <!--"filter" is defined in the browse-preprints route--> <!--the taxonomy-tree calls sendAction("filter") with arguments that aren't explicitly defined here--> {{taxonomy-tree filter="filter"}} </div> <div class="col-lg-8" id="preprintList"> {{#each filteredPreprints as |preprintEntry|}} {{preprint-entry preprint=preprintEntry}} {{/each}} </div> </div> </div> </body>
Remove tags from browse page
Remove tags from browse page
Handlebars
apache-2.0
pattisdr/ember-preprints,hmoco/ember-preprints,pattisdr/ember-preprints,CenterForOpenScience/ember-preprints,CenterForOpenScience/ember-preprints,baylee-d/ember-preprints,caneruguz/ember-preprints,laurenrevere/ember-preprints,laurenrevere/ember-preprints,baylee-d/ember-preprints,caneruguz/ember-preprints,hmoco/ember-preprints
3b49efd8f9cd65c29baf37de64a94046dbb115b7
site/templates/login_form.hbs
site/templates/login_form.hbs
<ul class="mlf-toolbar-links pull-right"> {{#each toolbarLinks}} <li> {{#link-to route}} <i {{bind-attr class=icon}}></i> {{text}} {{/link-to}} </li> {{/each}} </ul> {{outlet}}
{{partial 'shared/toolbar_links'}} {{outlet}}
Use partial to render the toolbar links
Use partial to render the toolbar links
Handlebars
mit
emberjs-cn/ember-menglifang
aa785f07cc0226d90b95bf62c1a9d41537facc67
content/themes/cameraman/index.hbs
content/themes/cameraman/index.hbs
{{!< default}} {{> header}} <section class="photos"> {{#foreach posts}} <article class="{{post_class}} photo-thumbnail"> <div class="photo-content-temp">{{content}}</div> <div class="photo-thumbnail-loading-progress"> <div class="spinner"> <div class="rect1"></div> <div class="rect2"></div> <div class="rect3"></div> <div class="rect4"></div> <div class="rect5"></div> </div> </div> <div class="photo-thumbnail-overlay"> <a href="{{url}}"> <div class="photo-thumbnail-overlay-inner"> <h2 class="photo-thumbnail-overlay-title">{{title}}</h2> <hr> <div class="photo-thumbnail-overlay-caption"> {{excerpt words="40"}}... </div> </div> </a> </div> </article> {{/foreach}} </section> {{pagination}} {{> footer}}
{{!< default}} {{> header}} <section class="photos"> {{#foreach posts}} <article class="{{post_class}} photo-thumbnail"> <div class="photo-content-temp">{{content}}</div> <div class="photo-thumbnail-loading-progress"> <div class="spinner"> <div class="rect1"></div> <div class="rect2"></div> <div class="rect3"></div> <div class="rect4"></div> <div class="rect5"></div> </div> </div> <div class="photo-thumbnail-overlay"> <a href="{{url}}"> <div class="photo-thumbnail-overlay-inner"> <h2 class="photo-thumbnail-overlay-title">{{title}}</h2> <hr> <div class="photo-thumbnail-overlay-caption"> {{excerpt words="30"}}... </div> </div> </a> </div> </article> {{/foreach}} </section> {{pagination}} {{> footer}}
Reduce number of words in summary
Reduce number of words in summary
Handlebars
mit
davidblurton/salmondesign-old,davidblurton/salmondesign-old
c4415893381876f6c57ce61a9569c4c2e90711bb
content/themes/fedes/index.hbs
content/themes/fedes/index.hbs
{{!< default}} {{! The tag above means - insert everything in this file into the {body} of the default.hbs template }} {{! The main content area on the homepage }} <main id="content" class="content" role="main"> {{! The tag below includes the post loop - partials/loop.hbs }} {{> "carousel"}} <div class="container gallery gallery-principal" id="galleryPrincipal"> <div> <h2 class="gallery-title">Proyectos</h2> <p class="text-center">nam ea quod aperiri eruditi.</p> </div> <div class="row"> {{#get "posts" limit="3" include="tags" as |projects|}} {{#foreach projects}} {{#has tag="proyectos"}} <section class="col-xs-12 col-sm-4"> <figure> {{#if image}} <div class="img-gallery"> <img src="{{image}}" class="img-responsive"/> <div>{{content}}</div> </div> {{else}} <div class="img-gallery"> <img src="{{asset 'img/no-image.jpg'}}" class="img-responsive"> <div>{{content}}</div> </div> {{/if}} <div> <p>{{title}}</p> </div> </figure> </section> {{/has}} {{/foreach}} {{/get}} </div> </div> </main>
{{!< default}} {{! The tag above means - insert everything in this file into the {body} of the default.hbs template }} {{! The main content area on the homepage }} <main id="content" class="content" role="main"> {{! The tag below includes the post loop - partials/loop.hbs }} {{> "carousel"}} <div class="container gallery gallery-principal" id="galleryPrincipal"> <div> <h2 class="gallery-title">Proyectos</h2> <p class="text-center">nam ea quod aperiri eruditi.</p> </div> <div class="row"> {{#get "posts" limit="3" filter="tag:proyectos" as |projects|}} {{#foreach projects}} <section class="col-xs-12 col-sm-4"> <figure> {{#if image}} <div class="img-gallery"> <img src="{{image}}" class="img-responsive"/> <div>{{content}}</div> </div> {{else}} <div class="img-gallery"> <img src="{{asset 'img/no-image.jpg'}}" class="img-responsive"> <div>{{content}}</div> </div> {{/if}} <div> <p>{{title}}</p> </div> </figure> </section> {{/foreach}} {{/get}} </div> </div> </main>
Change filter in home page
Change filter in home page
Handlebars
mit
noggalito/fedes,noggalito/fedes,noggalito/fedes,noggalito/fedes
948da6059a451f09ff8c609a93db2d07cc4289e1
tests/dummy/app/templates/index.hbs
tests/dummy/app/templates/index.hbs
<h1>Here are a few ways to use <code>transitionTo</code></h1> <p><code>ember-route-action</code> allows use the router transitionTo without a link-to helper.</p> <ul> <li><a onclick={{transitionTo "test" 'some-arg'}}>Go to test route.</a></li> <li>{{some-link click=(transitionTo "test" 'arg-to-route')}}</li> <li>{{some-link action=(transitionTo "test" 'arg-to-route')}}</li> </ul> <h2>The usage</h2> <pre> &lt;a onclick=\{{transitionTo "test" 'some-arg'}}&gt;Go to test route.&lt;/a&gt; \{{some-link click=(transitionTo "test" 'arg-to-route')}} \{{some-link action=(transitionTo "test" 'arg-to-route')}} </pre> <h2>The sample component</h2> <pre> import Ember from 'ember'; export default Ember.Component.extend({ click() { this.sendAction('action'); } }); </pre>
<h1>Here are a few ways to use <code>transition-to</code></h1> <p><code>ember-route-action</code> allows use the router transitionTo without a link-to helper.</p> <ul> <li><a onclick={{transition-to "test" 'some-arg'}}>Go to test route.</a></li> <li>{{some-link click=(transition-to "test" 'arg-to-route')}}</li> <li>{{some-link action=(transition-to "test" 'arg-to-route')}}</li> </ul> <h2>The usage</h2> <pre> &lt;a onclick=\{{transition-to "test" 'some-arg'}}&gt;Go to test route.&lt;/a&gt; \{{some-link click=(transition-to "test" 'arg-to-route')}} \{{some-link action=(transition-to "test" 'arg-to-route')}} </pre> <h2>The sample component</h2> <pre> import Ember from 'ember'; export default Ember.Component.extend({ click() { this.sendAction('action'); } }); </pre>
Use dasherized names for helpers for consistency
Use dasherized names for helpers for consistency Though both will work, dasherizing helper names in templates seems to be the clear recommendation: https://guides.emberjs.com/v2.5.0/templates/writing-helpers/
Handlebars
mit
peec/ember-transition-helper,peec/ember-route-action,peec/ember-route-action,peec/ember-transition-helper
e95384daef72ffadf453513a9d64c0dd69f687f9
website/partners/solutions/prodigal-solutions/index.hbs
website/partners/solutions/prodigal-solutions/index.hbs
--- layout: partners.hbs title: "Prodigal Solutions" solutions: true priority: 50 summary: logo: "https://d1qmdf3vop2l07.cloudfront.net/optimizely-marketer-assets.cloudvent.net/raw/partner-logos/solutions/prodigal_solutions.png" website_link: "http://prodigalsolutions.com" website_display: "www.prodigalsolutions.com" kb_article: stars: 1 industry: "Executive Consulting, Strategic consulting, Custom Implementation, Test Development, Execution & Management" locations: - location: phone: "7246408671" email: "joe@prodigalsolutions.com" region: "North America - US East" city: "Pittsburgh" state: "PA" address1: "600 Grant Street" address2: zip: "15219" country: "USA" contact: Joe@prodigalsolutions.com languages: - "English" tags: - "E-Commerce / Retail" - "Travel" - "B2B / SaaS" - "Lead gen" - "Insurance" - "Finance" - "Education" --- Prodigal Solutions develops groundbreaking solutions to increase conversion rates and profits for some of the fastest growing eCommerce companies. We prefer to be a small, fast moving agency and focus on fewer clients so we can generate amazing results every time.
--- layout: partners.hbs title: "Prodigal Solutions" solutions: true priority: 50 summary: logo: "https://d1qmdf3vop2l07.cloudfront.net/optimizely-marketer-assets.cloudvent.net/raw/partner-logos/solutions/prodigal_solutions.png" website_link: "http://prodigalsolutions.com" website_display: "www.prodigalsolutions.com" kb_article: stars: 1 industry: "Executive Consulting, Strategic consulting, Custom Implementation, Test Development, Execution & Management" locations: - location: phone: "(724)640-8671" email: "joe@prodigalsolutions.com" region: "North America - US East" city: "Pittsburgh" state: "PA" address1: "600 Grant Street" address2: zip: "15219" country: "USA" contact: joe@prodigalsolutions.com languages: - "English" tags: - "E-Commerce / Retail" - "Travel" - "B2B / SaaS" - "Lead gen" - "Insurance" - "Finance" - "Education" --- Prodigal Solutions develops groundbreaking solutions to increase conversion rates and profits for some of the fastest growing eCommerce companies. We prefer to be a small, fast moving agency and focus on fewer clients so we can generate amazing results every time.
Make phone number nice, lowercase email
Make phone number nice, lowercase email
Handlebars
mit
CilantroOrg/CilantroVegOrg,CilantroOrg/CilantroVegOrg,CilantroOrg/CilantroVegOrg
f25d7dd7214ab742b404fe5903c7785430a635a8
static/templates/settings/muted-topics-settings.handlebars
static/templates/settings/muted-topics-settings.handlebars
<div id="muted-topic-settings" class="settings-section" data-name="muted-topics"> <table id="muted_topics_table" class="table"> <thead> <th>{{t "Stream" }}</th> <th>{{t "Topic" }}</th> <th class="actions">{{t "Actions" }}</th> </thead> <tbody class="required-text" data-empty="{{t 'You have no muted any topics yet.'}}"></tbody> </table> </div>
<div id="muted-topic-settings" class="settings-section" data-name="muted-topics"> <table id="muted_topics_table" class="table"> <thead> <th>{{t "Stream" }}</th> <th>{{t "Topic" }}</th> <th class="actions">{{t "Actions" }}</th> </thead> <tbody class="required-text" data-empty="{{t 'You have not muted any topics yet.'}}"></tbody> </table> </div>
Fix spelled of muted topics message.
settings: Fix spelled of muted topics message.
Handlebars
apache-2.0
tommyip/zulip,rishig/zulip,zulip/zulip,rht/zulip,ryanbackman/zulip,ryanbackman/zulip,showell/zulip,verma-varsha/zulip,shubhamdhama/zulip,rishig/zulip,ryanbackman/zulip,amanharitsh123/zulip,andersk/zulip,tommyip/zulip,eeshangarg/zulip,verma-varsha/zulip,tommyip/zulip,synicalsyntax/zulip,dhcrzf/zulip,andersk/zulip,mahim97/zulip,brockwhittaker/zulip,jphilipsen05/zulip,dhcrzf/zulip,timabbott/zulip,rht/zulip,showell/zulip,shubhamdhama/zulip,brainwane/zulip,eeshangarg/zulip,vaidap/zulip,verma-varsha/zulip,jphilipsen05/zulip,rht/zulip,zulip/zulip,brainwane/zulip,hackerkid/zulip,christi3k/zulip,jackrzhang/zulip,christi3k/zulip,verma-varsha/zulip,rishig/zulip,mahim97/zulip,dhcrzf/zulip,brainwane/zulip,vabs22/zulip,shubhamdhama/zulip,zulip/zulip,vabs22/zulip,amanharitsh123/zulip,punchagan/zulip,brockwhittaker/zulip,hackerkid/zulip,timabbott/zulip,jackrzhang/zulip,mahim97/zulip,vabs22/zulip,synicalsyntax/zulip,brockwhittaker/zulip,showell/zulip,jackrzhang/zulip,rht/zulip,timabbott/zulip,eeshangarg/zulip,rishig/zulip,Galexrt/zulip,kou/zulip,jphilipsen05/zulip,synicalsyntax/zulip,jrowan/zulip,eeshangarg/zulip,dhcrzf/zulip,andersk/zulip,j831/zulip,tommyip/zulip,timabbott/zulip,mahim97/zulip,jackrzhang/zulip,kou/zulip,hackerkid/zulip,brainwane/zulip,hackerkid/zulip,tommyip/zulip,mahim97/zulip,punchagan/zulip,jphilipsen05/zulip,jrowan/zulip,verma-varsha/zulip,Galexrt/zulip,synicalsyntax/zulip,vaidap/zulip,zulip/zulip,punchagan/zulip,j831/zulip,punchagan/zulip,rishig/zulip,punchagan/zulip,jackrzhang/zulip,brainwane/zulip,hackerkid/zulip,jackrzhang/zulip,timabbott/zulip,jrowan/zulip,shubhamdhama/zulip,j831/zulip,vaidap/zulip,dhcrzf/zulip,vabs22/zulip,showell/zulip,rishig/zulip,synicalsyntax/zulip,christi3k/zulip,kou/zulip,timabbott/zulip,zulip/zulip,showell/zulip,kou/zulip,punchagan/zulip,andersk/zulip,j831/zulip,dhcrzf/zulip,mahim97/zulip,shubhamdhama/zulip,brainwane/zulip,hackerkid/zulip,amanharitsh123/zulip,zulip/zulip,rht/zulip,jrowan/zulip,jrowan/zulip,brockwhittaker/zulip,j831/zulip,vaidap/zulip,j831/zulip,vaidap/zulip,jphilipsen05/zulip,tommyip/zulip,rht/zulip,christi3k/zulip,vabs22/zulip,Galexrt/zulip,verma-varsha/zulip,jphilipsen05/zulip,hackerkid/zulip,christi3k/zulip,kou/zulip,Galexrt/zulip,amanharitsh123/zulip,christi3k/zulip,andersk/zulip,vabs22/zulip,synicalsyntax/zulip,zulip/zulip,shubhamdhama/zulip,eeshangarg/zulip,eeshangarg/zulip,brockwhittaker/zulip,brockwhittaker/zulip,kou/zulip,andersk/zulip,Galexrt/zulip,andersk/zulip,ryanbackman/zulip,amanharitsh123/zulip,timabbott/zulip,dhcrzf/zulip,Galexrt/zulip,punchagan/zulip,synicalsyntax/zulip,showell/zulip,ryanbackman/zulip,rht/zulip,vaidap/zulip,jrowan/zulip,shubhamdhama/zulip,kou/zulip,eeshangarg/zulip,Galexrt/zulip,brainwane/zulip,tommyip/zulip,ryanbackman/zulip,rishig/zulip,amanharitsh123/zulip,showell/zulip,jackrzhang/zulip
24c6cee8bbbbb217889989fe3eb676cbda93350f
templates/settings/tags.hbs
templates/settings/tags.hbs
<header class="settings-view-header"> <a class="btn btn-default btn-back active" href="/ghost/settings/">Back</a> <h2 class="page-title">Tags</h2> <section class="page-actions"> <button type="button" class="btn btn-green" {{action "newTag"}}>New Tag</button> </section> </header> <section class="content settings-tags"> {{#each tag in tags}} <div class="settings-tag"> <button class="tag-edit-button" {{action "editTag" tag}}> <span class="tag-title">{{tag.name}}</span> <span class="label label-default">/{{tag.slug}}</span> <p class="tag-description">{{tag.description}}</p> <span class="tags-count">{{tag.post_count}}</span> </button> </div> {{/each}} </section>
<header class="settings-view-header"> <h2 class="page-title">Tags</h2> <div class="js-settings-header-inner settings-header-inner"> {{#link-to 'settings' class='btn btn-default btn-back'}}Back{{/link-to}} </div> <section class="page-actions"> <button type="button" class="btn btn-green" {{action "newTag"}}>New Tag</button> </section> </header> <section class="content settings-tags"> {{#each tag in tags}} <div class="settings-tag"> <button class="tag-edit-button" {{action "editTag" tag}}> <span class="tag-title">{{tag.name}}</span> <span class="label label-default">/{{tag.slug}}</span> <p class="tag-description">{{tag.description}}</p> <span class="tags-count">{{tag.post_count}}</span> </button> </div> {{/each}} </section>
Fix back button on tag UI page
Fix back button on tag UI page closes #4703 - previous link used absolute url which fails for subdirectories
Handlebars
mit
dbalders/Ghost-Admin,acburdine/Ghost-Admin,JohnONolan/Ghost-Admin,TryGhost/Ghost-Admin,kevinansfield/Ghost-Admin,airycanon/Ghost-Admin,acburdine/Ghost-Admin,kevinansfield/Ghost-Admin,airycanon/Ghost-Admin,dbalders/Ghost-Admin,TryGhost/Ghost-Admin,JohnONolan/Ghost-Admin
20ba4a072f91d80222d2604796a2350ae6607094
front/views/FooterTemplate.hbs
front/views/FooterTemplate.hbs
<script type="text/x-handlebars-template" id="footer-template"> <div class="container"> <div class="col-sm-2"><p>Copyright &copy; 2017 Semitki</p></div> <div class="col-sm-8"> {{#each pages}} <a href="{{title}}" class="btn btn-link" role="button" id="{{title}}-link">{{title}}</a> {{/each}} <a href="" class="btn btn-link" role="button" id="link">A sample link</a> <a href="" class="btn btn-link" role="button" id="link">Another place</a> <a href="" class="btn btn-link" role="button" id="link">Yay!</a> </div> <div class="col-sm-2"><p>Copyright &copy; 2017 Semitki</p></div> </div> </script>
<script type="text/x-handlebars-template" id="footer-template"> <div class="container"> <div class="col-sm-2"><p>Copyright &copy; 2017 Semitki</p></div> <div class="col-sm-8"> {{#each pages}} <a href="{{title}}" class="btn btn-link" role="button" id="{{title}}-link">{{title}}</a> {{/each}} </div> <div class="col-sm-2"><p>Copyright &copy; 2017 Semitki</p></div> </div> </script>
FIX test links in footer
FIX test links in footer
Handlebars
mit
semitki/semitki,semitki/semitki,semitki/semitki,semitki/semitki
663d00b64344fd132c68ef673499a1b15becae63
static/templates/tab_bar.hbs
static/templates/tab_bar.hbs
<span id="tab_list"> <span {{#if stream_settings_link}}class="stream"{{/if}} {{#if data}}data-name="{{data}}"{{/if}}> {{#if icon}} <i class="fa fa-{{icon}}" aria-hidden="true"></i> {{/if}} {{#if stream_settings_link}} <a href="{{stream_settings_link}}">{{title}}</a> {{else}} {{title}} {{/if}} </span> {{#if sub_count}} <span class="sub_count" data-toggle="tooltip" title="{{sub_count}} users are subscribed to #{{title}}"><i class="fa fa-user-o"></i>{{formatted_sub_count}}</span> {{/if}} {{#if rendered_narrow_description}} <span class="narrow_description rendered_markdown" data-toggle="tooltip">{{rendered_markdown rendered_narrow_description}}</span> {{/if}} <span class="search_icon search_closed" ><i class="fa fa-search" aria-hidden="true"></i></span> </span>
<span id="tab_list"> <span {{#if stream_settings_link}}class="stream"{{/if}}> {{#if icon}} <i class="fa fa-{{icon}}" aria-hidden="true"></i> {{/if}} {{#if stream_settings_link}} <a href="{{stream_settings_link}}">{{title}}</a> {{else}} {{title}} {{/if}} </span> {{#if sub_count}} <span class="sub_count" data-toggle="tooltip" title="{{sub_count}} users are subscribed to #{{title}}"><i class="fa fa-user-o"></i>{{formatted_sub_count}}</span> {{/if}} {{#if rendered_narrow_description}} <span class="narrow_description rendered_markdown" data-toggle="tooltip">{{rendered_markdown rendered_narrow_description}}</span> {{/if}} <span class="search_icon search_closed" ><i class="fa fa-search" aria-hidden="true"></i></span> </span>
Drop obsolete data attribute on ".stream_settings_link".
navbar: Drop obsolete data attribute on ".stream_settings_link". We stopped sending "data" to this template in eb4a2b9d4e80d495bf0a11c87bb31d18e94e9cc0 but we did not remove it from the template, probably as an oversight.
Handlebars
apache-2.0
rht/zulip,timabbott/zulip,shubhamdhama/zulip,brainwane/zulip,rht/zulip,rht/zulip,punchagan/zulip,andersk/zulip,hackerkid/zulip,zulip/zulip,eeshangarg/zulip,rht/zulip,hackerkid/zulip,timabbott/zulip,hackerkid/zulip,shubhamdhama/zulip,brainwane/zulip,kou/zulip,synicalsyntax/zulip,eeshangarg/zulip,showell/zulip,synicalsyntax/zulip,showell/zulip,brainwane/zulip,punchagan/zulip,timabbott/zulip,eeshangarg/zulip,showell/zulip,punchagan/zulip,shubhamdhama/zulip,andersk/zulip,eeshangarg/zulip,timabbott/zulip,brainwane/zulip,synicalsyntax/zulip,punchagan/zulip,showell/zulip,brainwane/zulip,synicalsyntax/zulip,zulip/zulip,kou/zulip,shubhamdhama/zulip,hackerkid/zulip,punchagan/zulip,brainwane/zulip,zulip/zulip,timabbott/zulip,andersk/zulip,showell/zulip,kou/zulip,shubhamdhama/zulip,punchagan/zulip,hackerkid/zulip,eeshangarg/zulip,kou/zulip,zulip/zulip,rht/zulip,andersk/zulip,zulip/zulip,kou/zulip,hackerkid/zulip,hackerkid/zulip,zulip/zulip,brainwane/zulip,punchagan/zulip,andersk/zulip,rht/zulip,kou/zulip,showell/zulip,eeshangarg/zulip,synicalsyntax/zulip,zulip/zulip,synicalsyntax/zulip,timabbott/zulip,kou/zulip,showell/zulip,andersk/zulip,eeshangarg/zulip,shubhamdhama/zulip,synicalsyntax/zulip,shubhamdhama/zulip,timabbott/zulip,andersk/zulip,rht/zulip
8b55dcee82fb6f433e06653827dc870484bbe9de
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}}"> <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}}">&raquo;</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 "}} <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> </header> <section class="post-excerpt"> <p>{{excerpt words="36"}} <a class="read-more" href="{{url}}">&raquo;</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 "}} <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}}
Increase Except for a nicer summary
Increase Except for a nicer summary
Handlebars
mit
ticoombs/SeoBro,ticoombs/SeoBro
8f176edbe088ffa523ecf66935da741bdd676e34
ember/app/components/comments-list.hbs
ember/app/components/comments-list.hbs
<table class="table" style="table-layout:fixed; word-wrap:break-word;" ...attributes> <tbody> {{#each @comments as |comment index|}} <tr> <td data-test-comment={{index}}> {{#if comment.user}} <span style="float:left"> <LinkTo @route="user" @model={{comment.user.id}} data-test-user>{{comment.user.name}}</LinkTo>:&nbsp; </span> {{/if}} {{markdown comment.text}} </td> </tr> {{else}} <tr> <td><em>{{t "no-comments-yet"}}</em></td> </tr> {{/each}} {{#if account.user.id}} <tr> <td> <form {{action (perform this.addCommentTask) on="submit"}} data-test-add-comment> <Textarea @value={{this.addCommentText}} class="form-control" @disabled={{this.addCommentTask.isRunning}} data-test-input /><br> <input type="submit" value={{t "add-comment"}} class="btn btn-primary" disabled={{this.addCommentTask.isRunning}} data-test-submit> </form> </td> </tr> {{/if}} </tbody> </table>
<table class="table" style="table-layout:fixed; word-wrap:break-word;" ...attributes> <tbody> {{#each @comments as |comment index|}} <tr> <td data-test-comment={{index}}> {{#if comment.user}} <span style="float:left"> <LinkTo @route="user" @model={{comment.user.id}} data-test-user>{{comment.user.name}}</LinkTo>:&nbsp; </span> {{/if}} {{markdown comment.text}} </td> </tr> {{else}} <tr> <td><em>{{t "no-comments-yet"}}</em></td> </tr> {{/each}} {{#if account.user.id}} <tr> <td> <form {{action (perform this.addCommentTask) on="submit"}} data-test-add-comment> <Textarea @value={{this.addCommentText}} class="form-control" @disabled={{this.addCommentTask.isRunning}} data-test-input /><br> <button type="submit" class="btn btn-primary" disabled={{this.addCommentTask.isRunning}} data-test-submit>{{t "add-comment"}}</button> </form> </td> </tr> {{/if}} </tbody> </table>
Convert submit input to button
CommentsList: Convert submit input to button
Handlebars
agpl-3.0
skylines-project/skylines,skylines-project/skylines,skylines-project/skylines,skylines-project/skylines
28823a1bd66de70024171ad16c676ad2ccc60428
app/contributors/profile/template.hbs
app/contributors/profile/template.hbs
<section class="content content-padding"> <div class="layout-row contributor-profile-details"> {{#with model.picture as |picture|}} <img class="contributor-profile-picture" src={{picture}}> {{/with}} <div> <h1>{{model.name}}</h1> {{#with model.website as |website|}} <div> <a href={{prefixHttp website}}>{{website}}</a> </div> {{/with}} {{#with model.company as |company|}} <div>{{company}}</div> {{/with}} </div> </div> {{outlet}} </section>
<section class="content content-padding"> <div class="layout-row contributor-profile-details"> {{#with model.picture as |picture|}} <img class="contributor-profile-picture" src={{picture}}> {{/with}} <div> <h1>{{model.name}}</h1> {{#with model.website as |website|}} <div> <a href={{prefix-http website}}>{{website}}</a> </div> {{/with}} {{#with model.company as |company|}} <div>{{company}}</div> {{/with}} </div> </div> {{outlet}} </section>
Use dashes instead of camelcase for helper
Use dashes instead of camelcase for helper
Handlebars
mit
opensource-challenge/opensource-challenge-client,opensource-challenge/opensource-challenge-client
70e53aec4dbb6569922437098ce01446de1c4605
source/javascripts/app/examples/loading/templates/application.hbs
source/javascripts/app/examples/loading/templates/application.hbs
<h3>Last 3 Pull Requests to Ember.js</h3> <ul> {{#each pr in model}} <li> <div class="issue-number">#{{pr.number}}</div> <div class="issue-title"> <a {{bind-attr href=html_url}}>{{pr.title}}</a> </div> <div class="author-name"> Opened by <a {{bind-attr href=pr.head.user.html_url}}><strong>@{{pr.head.user.login}}</strong></a> </div> </li> {{/each}} </ul>
<h3>Last 3 Pull Requests to Ember.js</h3> <ul> {{#each pr in model}} <li> <div class="issue-number">#{{pr.number}}</div> <div class="issue-title"> <a {{bind-attr href=pr.html_url}}>{{pr.title}}</a> </div> <div class="author-name"> Opened by <a {{bind-attr href=pr.head.user.html_url}}><strong>@{{pr.head.user.login}}</strong></a> </div> </li> {{/each}} </ul>
Fix minor bug in the "Loading data from a server" example
Fix minor bug in the "Loading data from a server" example
Handlebars
mit
zeppelin/emberjs-website,workmanw/ember-website,davidpett/website,elidupuis/website,rwjblue/website,kkenan/website,zeppelin/emberjs-website,greyhwndz/website,balupton/ember-website,koriroys/emberjs-website,raycohen/website,josemarluedke/ember-website,cyberkoi/website,raycohen/website,SaladFork/emberjs-website,shearwater-intl/website,SaladFork/emberjs-website,elwayman02/website,cyberkoi/website,kpfefferle/website,workmanw/ember-website,bmac/website,cllns/emberjs-website,shearwater-intl/website,EricSchank/website,MinxianLi/ember,quangv/website,MinxianLi/ember,wifelette/website,shearwater-intl/website,MinxianLi/ember,quangv/website,kkenan/website,zeppelin/emberjs-website,koriroys/emberjs-website,greyhwndz/website,ktornwall/website,ktornwall/website,martndemus/website,SaladFork/emberjs-website,koriroys/emberjs-website,davidpett/website,duggiefresh/website,greyhwndz/website,bmac/website,elidupuis/website,EricSchank/website,Eric-Guo/website,davidpett/website,tmock12/website,AaronSikes/website,datajohnny/website,bmac/website,datajohnny/website,workmanw/ember-website,martndemus/website,Eric-Guo/website,mrjavascript/website,AgilionApps/website,wifelette/website,bmac/website,josemarluedke/ember-website,jimmay5469/website,raycohen/website,balupton/ember-website,Eric-Guo/website,quangv/website,elwayman02/website,duggiefresh/website,jimmay5469/website,josemarluedke/ember-website,workmanw/ember-website,maxcal/website,kkenan/website,kpfefferle/website,EricSchank/website,wifelette/website,datajohnny/website,cllns/emberjs-website,AgilionApps/website,cllns/emberjs-website,mrjavascript/website,duggiefresh/website,kpfefferle/website,elidupuis/website,maxcal/website,tmock12/website,martndemus/website,rwjblue/website,SaladFork/emberjs-website,AaronSikes/website,tmock12/website,AaronSikes/website,zeppelin/emberjs-website,ktornwall/website,jimmay5469/website,mrjavascript/website,maxcal/website,josemarluedke/ember-website,AgilionApps/website,elwayman02/website,balupton/ember-website,cyberkoi/website
5ad100e81c14667f60b4931b7f129d6c6615f72c
addon/components/bs-accordion/item/title.hbs
addon/components/bs-accordion/item/title.hbs
{{!-- template-lint-disable no-nested-interactive --}} {{!-- @todo fix this, see https://github.com/kaliber5/ember-bootstrap/issues/999 --}} {{#if (macroCondition (macroGetOwnConfig "isBS5"))}} <h2 class="accordion-header" role="tab" ...attributes > <button class="accordion-button {{if @disabled "disabled"}} {{if @collapsed "collapsed"}}" type="button" disabled={{@disabled}} {{on "click" this.handleClick}} > {{yield}} </button> </h2> {{else}} <div class="{{if (macroCondition (macroGetOwnConfig "isBS3")) "panel-heading"}} {{if (macroCondition (macroGetOwnConfig "isBS4")) "card-header"}}" role="tab" ...attributes {{on "click" this.handleClick}} > {{#if (macroCondition (macroGetOwnConfig "isBS4"))}} <h5 class="mb-0"> <button class="btn btn-link {{if @disabled "disabled"}} {{if @collapsed "collapsed" "expanded"}}" type="button" disabled={{@disabled}}> {{yield}} </button> </h5> {{/if}} {{#if (macroCondition (macroGetOwnConfig "isBS3"))}} <h4 class="panel-title"> <a href="#" class="{{if @disabled "disabled"}} {{if @collapsed "collapsed" "expanded"}}" disabled={{@disabled}}> {{yield}} </a> </h4> {{/if}} </div> {{/if}}
{{!-- template-lint-disable no-nested-interactive --}} {{!-- @todo fix this, see https://github.com/kaliber5/ember-bootstrap/issues/999 --}} {{#if (macroCondition (macroGetOwnConfig "isBS5"))}} <h2 class="accordion-header" role="tab" ...attributes > <button class="accordion-button {{if @disabled "disabled"}} {{if @collapsed "collapsed"}}" type="button" disabled={{@disabled}} {{on "click" this.handleClick}} > {{yield}} </button> </h2> {{else}} <div class="{{if (macroCondition (macroGetOwnConfig "isBS3")) "panel-heading"}} {{if (macroCondition (macroGetOwnConfig "isBS4")) "card-header"}}" role="tab" ...attributes {{on "click" this.handleClick}} > {{#if (macroCondition (macroGetOwnConfig "isBS4"))}} <h5 class="mb-0"> <button class="btn btn-link {{if @disabled "disabled"}} {{if @collapsed "collapsed" "expanded"}}" type="button" disabled={{@disabled}}> {{yield}} </button> </h5> {{/if}} {{#if (macroCondition (macroGetOwnConfig "isBS3"))}} <h4 class="panel-title"> <a href="#" class="{{if @disabled "disabled"}} {{if @collapsed "collapsed" "expanded"}}"> {{yield}} </a> </h4> {{/if}} </div> {{/if}}
Remove disabled attribute for BS3
Remove disabled attribute for BS3
Handlebars
mit
kaliber5/ember-bootstrap,kaliber5/ember-bootstrap
c6245257dd03d1a7bd4c82342cdde938d8cbbe38
app/templates/components/problems-review.hbs
app/templates/components/problems-review.hbs
<h1 class="primary-heading">Review Your Team's Performance</h1> <h2 class="secondary-heading">{{model.name}}</h2> <ul class="review-members-list"> {{teammate-review model=model.owner problem=model action="reviewTeammate"}} {{#if model.member1}} {{teammate-review model=model.member1 action="reviewTeammate"}} {{/if}} {{#if model.member2}} {{teammate-review model=model.member2 action="reviewTeammate"}} {{/if}} {{#if model.member3}} {{teammate-review model=model.member3 action="reviewTeammate"}} {{/if}} {{#if model.member4}} {{teammate-review model=model.member4 action="reviewTeammate"}} {{/if}} {{#if model.member5}} {{teammate-review model=model.member5 action="reviewTeammate"}} {{/if}} </ul> {{yield}}
<h1 class="primary-heading">Review Your Team's Performance</h1> <h2 class="secondary-heading">{{model.name}}</h2> <ul class="review-members-list"> {{teammate-review model=model.owner problem=model action="reviewTeammate"}} {{#if model.member1}} {{teammate-review model=model.member1 problem=model action="reviewTeammate"}} {{/if}} {{#if model.member2}} {{teammate-review model=model.member2 problem=model action="reviewTeammate"}} {{/if}} {{#if model.member3}} {{teammate-review model=model.member3 problem=model action="reviewTeammate"}} {{/if}} {{#if model.member4}} {{teammate-review model=model.member4 problem=model action="reviewTeammate"}} {{/if}} {{#if model.member5}} {{teammate-review model=model.member5 problem=model action="reviewTeammate"}} {{/if}} </ul> {{yield}}
Add problem context to all member components after confirmation of reviewKey concept works
Add problem context to all member components after confirmation of reviewKey concept works
Handlebars
mit
jjhampton/cross-pollinate,jjhampton/cross-pollinate
efe8e51e996766121f7bbd56f1633480b69d391b
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> <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}}">&raquo;</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> </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}}">&raquo;</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}}
Revert previous commit; noticed it was already there, just lower
Revert previous commit; noticed it was already there, just lower
Handlebars
mit
mouseguests/mouseguests.github.io,mouseguests/mouseguests.github.io,mouseguests/mouseguests.github.io
0f21f4e42215b91ae3e757ba91c3ae2f58185fea
app/assets/javascripts/templates/_projectInfo.handlebars
app/assets/javascripts/templates/_projectInfo.handlebars
<div class="clearfix project-info-container"> <h1 class="pull-left project-title"> {{title}} </h1> </div> <div class="project-description"> {{#if showingProjectDescript}} <div> Sample Project Descript <a {{action hideProjectDescript}}>x</a> </div> {{else}} <a {{action showProjectDescript}}> <i class="fa fa-file fa-fw"></i>ßß Project Description </a> {{/if}} </div> <div class="progress progress-bar-global"> <span class="current-user">{{render "progressBarSection" auth.currentUser}}</span> {{render "groupMemberProgressBars" groupMembers}} </div>
<div class="clearfix project-info-container"> <h1 class="pull-left project-title"> {{title}} </h1> </div> <div class="prog"> <div class="progress progress-bar-global"> <span class="current-user">{{render "progressBarSection" auth.currentUser}}</span> {{render "groupMemberProgressBars" groupMembers}} </div> <div class="project-description"> {{#if showingProjectDescript}} <div> Sample Project Descript <a {{action hideProjectDescript}}>x</a> </div> {{else}} <a {{action showProjectDescript}}> <i class="fa fa-file fa-fw"></i> Project Description </a> {{/if}} </div> </div>
Move project description to the right of the global progress bar
Move project description to the right of the global progress bar
Handlebars
mit
Gowiem/Sisyphus,Gowiem/Sisyphus
3a757dcc15c8140a4d0064a22b6d16a3ae715ae5
app/templates/new-badge.hbs
app/templates/new-badge.hbs
<div class="new-badge-modal"> {{badge-box badge=badge}} <a {{action "close"}} class="ion-close"></a> </div> <div class="mask"> </div>
<div class="new-badge-modal"> {{badge-box badge=badge}} <a {{action "close"}} class="ion-close"></a> </div> <div {{action "close"}} class="mask"> </div>
Add the "close" action to the mask
Add the "close" action to the mask This will allow people to close the model by clicking anywhere, not just on the cross.
Handlebars
mit
wordset/wordset-ui,BryanCode/wordset-ui,kaelig/wordset-ui,wordset/wordset-ui,wordset/wordset-ui,kaelig/wordset-ui,BryanCode/wordset-ui,BryanCode/wordset-ui
343d617cd63713a6e3188def979f7643fd54a58d
app/templates/users/new.hbs
app/templates/users/new.hbs
<form {{submit "register"}}> <div class="sign-module"> <h3>Register</h3> <div class="username"> <label>Username {{validated-input type="text" autofocus="autofocus" value=model.id errors=errors.model.id}} </label> </div> <div class="email"> <label>E-mail {{validated-input type="email" value=model.email errors=errors.model.email}} </label> </div> <div class="password"> <label>Password {{validated-input type="password" value=model.password errors=errors.model.password}} </label> </div> <div class="password"> <label> Confirm password {{validated-input type="password" value=model.passwordConfirmation errors=errors.model.passwordConfirmation}} </label> </div> {{partial "users/-tos-area"}} <button {{bind-attr disabled=isInvalid}} {{action "register"}}>Register</button> <div class="aside"> Already have an account? Sign in {{#link-to 'users.login'}} here {{/link-to}}. </div> </div> </form>
<form {{submit "register"}}> <div class="sign-module"> <h3>Register</h3> {{#link-to "auth.oauth_login" "facebook" class="fb auth"}} <span class="ion-social-facebook"></span> Facebook Login {{/link-to}} {{#link-to "auth.oauth_login" "github" class="gh auth"}} <span class="ion-social-github"></span> GitHub Login {{/link-to}} {{#link-to "auth.oauth_login" "google" class="google auth"}} <span class="ion-social-google"></span> Google Login {{/link-to}} <div class="separator"></div> <div class="username"> <label>Username {{validated-input type="text" autofocus="autofocus" value=model.id errors=errors.model.id}} </label> </div> <div class="email"> <label>E-mail {{validated-input type="email" value=model.email errors=errors.model.email}} </label> </div> <div class="password"> <label>Password {{validated-input type="password" value=model.password errors=errors.model.password}} </label> </div> <div class="password"> <label> Confirm password {{validated-input type="password" value=model.passwordConfirmation errors=errors.model.passwordConfirmation}} </label> </div> {{partial "users/-tos-area"}} <button {{bind-attr disabled=isInvalid}} {{action "register"}}>Register</button> <div class="aside"> Already have an account? Sign in {{#link-to 'users.login'}} here {{/link-to}}. </div> </div> </form>
Add 3rd-party logins to the registration page also
Add 3rd-party logins to the registration page also
Handlebars
mit
kaelig/wordset-ui,wordset/wordset-ui,kaelig/wordset-ui,wordset/wordset-ui,BryanCode/wordset-ui,BryanCode/wordset-ui,wordset/wordset-ui,BryanCode/wordset-ui
bf6041cd1b8a484da9cef110dee0b66f14acac8d
server/views/layouts/main.hbs
server/views/layouts/main.hbs
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content="mas chat service"> <meta name="author" content="Ilkka Oksanen"> <link rel="shortcut icon" href="/favicon.png"> <title>MAS - {{title}}</title> <link href="/dist/pages.css" rel="stylesheet"> <script src="/dist/pages-libs.js"></script> <script src="/javascripts/{{getPageJSFile}}"></script> </head> <body> {{{body}}} </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content="mas chat service"> <meta name="author" content="Ilkka Oksanen"> <link rel="shortcut icon" href="/favicon.png"> <title>MAS</title> </head> <body> {{{body}}} </body> <script src="/dist/app.js"></script> </html>
Prepare layout file for react website app
Prepare layout file for react website app
Handlebars
apache-2.0
ilkkao/mas,ilkkao/mas,ilkkao/mas,ilkkao/mas
0052b9527d3deee484f96322360f1ca815e15699
templates/programs/TIME_CREDIT/title.hbs
templates/programs/TIME_CREDIT/title.hbs
<h1 class="squatch-title"> Give {{programDetails.referredRewardDetails.credit}} Month<span class="hidden-{{math programDetails.referredRewardDetails.credit '== 1'}}">s</span> and Get {{programDetails.referredRewardDetails.credit}} Month<span class="hidden-{{math programDetails.referredRewardDetails.credit '== 1'}}">s</span>! </h1>
<h1 class="squatch-title"> {{stringFormat "%s" (variables 'widgetCustomization.heading')}} </h1>
Update to add variables for widget customization
Update to add variables for widget customization
Handlebars
apache-2.0
saasquatch/time-credit-theme,saasquatch/time-credit-theme
fb0d180961463d6ef14b24e134e74440060729cd
app/frontend/javascripts/templates/story-info.handlebars
app/frontend/javascripts/templates/story-info.handlebars
<h3 class="name">{{ name }}</h3> <div class="description"> {{{ description }}} </div> {{#if edit}} <div class="actions"> <a class="btn btn-default btn-primary" href="/chapters/{{ id }}/edit" title="Edit Chapter"> <span class="btn-icon-pencil"></span> Edit Chapter </a> <a class="btn btn-default btn-danger" href="#story-chapter-delete-modal" data-toggle="modal" title="Delete Chapter"> <span class="btn-icon-trash"></span> Delete Chapter </a> </div> {{/if}}
<h3 class="name">{{ name }}</h3> {{#if image}} <div class="picture"> <img src="{{ image }}" alt="{{ name }}"> </div> {{/if}} <div class="description"> {{{ description }}} </div> {{#if edit}} <div class="actions"> <a class="btn btn-default btn-primary" href="/chapters/{{ id }}/edit" title="Edit Chapter"> <span class="btn-icon-pencil"></span> Edit Chapter </a> <!-- <a class="btn btn-default btn-danger" href="#story-chapter-delete-modal" data-toggle="modal" title="Delete Chapter"> <span class="btn-icon-trash"></span> Delete Chapter </a> --> </div> {{/if}}
Comment delete chapter button by now
Comment delete chapter button by now Also add placeholder for Chapter picture
Handlebars
agpl-3.0
civio/onodo,civio/onodo,civio/onodo,civio/onodo
b603a5e9e8169c92ec18557071b32da016402919
app/index/template.hbs
app/index/template.hbs
<h2>Welcome to Traffic Tracker</h2> <div class="homepageMap"> <iframe src="https://www.google.com/maps/d/u/0/embed?mid=1XtWfbE9K4hH7WMbojvhOeFsBY2M" width="640" height="480"></iframe> </div> <div class="wrapperTwitter"> <div class="homepageTwitter"> <a class="twitter-timeline" data-theme="light" data-link-color="#2B7BB9" href="https://twitter.com/Ma3Route?ref_src=twsrc%5Etfw">Tweets by Ma3Route</a> <script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script> </div> </div> </div> <h2>Legends</h2> <ul class="list-unstyled"> {{#each model.legends as |legend|}} {{legend-tile legend=legend}} {{/each}} </ul>
<h2>Welcome to Traffic Tracker</h2> <div class="homepageMap"> <iframe src="https://www.google.com/maps/d/u/0/embed?mid=1XtWfbE9K4hH7WMbojvhOeFsBY2M" width="640" height="480"></iframe> </div> <div class="wrapperTwitter"> <div class="homepageTwitter"> <a class="twitter-timeline" data-theme="light" data-link-color="#2B7BB9" href="https://twitter.com/Ma3Route?ref_src=twsrc%5Etfw">Tweets by Ma3Route</a> <script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script> </div> </div> <h2>Legends</h2> <ul class="list-unstyled"> {{#each model.legends as |legend|}} {{legend-tile legend=legend}} {{/each}} </ul>
Remove Extra Div Remove extra closing div tag
Remove Extra Div Remove extra closing div tag
Handlebars
mit
mwerumuchai/traffic-tracker,mwerumuchai/traffic-tracker
2a923d2031dd8eac3e25d825f4430e530b246305
app/templates/components/page-numbers.hbs
app/templates/components/page-numbers.hbs
<div class="pagination-centered"> <ul class="pagination"> {{#if canStepBackward}} <li class="arrow prev enabled-arrow"> <a href="#" {{action "incrementPage" -1}}>&laquo;</a> </li> {{else}} <li class="arrow prev disabled"> <a href="#" {{action "incrementPage" -1}}>&laquo;</a> </li> {{/if}} {{#each item in pageItems}} {{#if item.dots}} <li class="dots disabled"> <span>...</span> </li> {{/if}} {{#if item.current}} <li class="active page-number"> <a href="#">{{item.page}}</a> </li> {{else}} <li class="page-number"> <a href="#" {{action "pageClicked" item.page}}>{{item.page}}</a> </li> {{/if}} {{/each}} {{#if canStepForward}} <li class="arrow next enabled-arrow"> <a href="#" {{action "incrementPage" 1}}>&raquo;</a> </li> {{else}} <li class="arrow next disabled"> <a href="#" {{action "incrementPage" 1}}>&raquo;</a> </li> {{/if}} </ul> </div>
<div class="pagination-centered"> <ul class="pagination"> {{#if canStepBackward}} <li class="arrow prev enabled-arrow"> <a href="#" {{action "incrementPage" -1}}>&laquo;</a> </li> {{else}} <li class="arrow prev disabled"> <a href="#" {{action "incrementPage" -1}}>&laquo;</a> </li> {{/if}} {{#each pageItems as |item|}} {{#if item.dots}} <li class="dots disabled"> <span>...</span> </li> {{/if}} {{#if item.current}} <li class="active page-number"> <a href="#">{{item.page}}</a> </li> {{else}} <li class="page-number"> <a href="#" {{action "pageClicked" item.page}}>{{item.page}}</a> </li> {{/if}} {{/each}} {{#if canStepForward}} <li class="arrow next enabled-arrow"> <a href="#" {{action "incrementPage" 1}}>&raquo;</a> </li> {{else}} <li class="arrow next disabled"> <a href="#" {{action "incrementPage" 1}}>&raquo;</a> </li> {{/if}} </ul> </div>
Move to new each syntax
Move to new each syntax fixes #112
Handlebars
mit
mharris717/ember-cli-pagination,david-duncan/ember-cli-pagination,david-duncan/ember-cli-pagination,alphasights/ember-cli-pagination,noslouch/ember-cli-pagination,mharris717/ember-cli-pagination,alphasights/ember-cli-pagination,broerse/ember-cli-pagination,noslouch/ember-cli-pagination,broerse/ember-cli-pagination
b180a6514431e9e86e5d6ced485296d00bbae074
app/templates/components/results-list.hbs
app/templates/components/results-list.hbs
<table class="table table-striped"> <thead> <tr style="height:45px"> <th style="text-align: center;">Pořadí</th> <th>Jméno</th> <th>Trofeje</th> <th style="text-align: center;">Skóre</th> <th style="text-align: center;">Počet vyřešených úloh</th> </tr> </thead> <tbody> {{#each model as |res|}} <tr class="{{if (eq session.current_user.id res.user.id) 'logged-in' (if res.user.successful 'successful') }}" style="height:45px"> <td style="text-align: center;">{{res.num}}</td> <td>{{#link-to "user-profile" res.user}}{{res.user.first_name}} {{res.user.last_name}}{{/link-to}}</td> <td> {{#each res.user.achievements as |achievement|}} {{#link-to 'achievements'}}{{achievement-small model=achievement}}{{/link-to}} {{/each}} </td> <td style="text-align: center;">{{res.user.score}}</td> <td style="text-align: center;">{{res.user.tasks_num}}</td> </tr> {{else}} <p>Výsledková listina je zatím prázdná.</p> {{/each}} </tbody> </table>
<table class="table table-striped"> <thead> <tr style="height:45px"> <th style="text-align: center;">Pořadí</th> <th>Jméno</th> <th>Trofeje</th> <th style="text-align: center;">Skóre</th> <th style="text-align: center;">Počet vyřešených úloh</th> </tr> </thead> <tbody> {{#each model as |res|}} <tr class="{{if (eq session.current_user.id res.user.id) 'logged-in' (if res.user.successful 'successful') }}" style="height:45px"> <td style="text-align: center;">{{res.num}}</td> <td>{{#link-to "user-profile" res.user}}{{res.user.first_name}} {{res.user.last_name}}{{/link-to}}</td> <td> {{#each res.user.achievements as |achievement|}} {{#link-to 'achievements' class='noContent'}}{{achievement-small model=achievement}}{{/link-to}} {{/each}} </td> <td style="text-align: center;">{{res.user.score}}</td> <td style="text-align: center;">{{res.user.tasks_num}}</td> </tr> {{else}} <p>Výsledková listina je zatím prázdná.</p> {{/each}} </tbody> </table>
Remove print caption iof achievements in results.
Remove print caption iof achievements in results.
Handlebars
mit
fi-ksi/web-frontend,fi-ksi/web-frontend,fi-ksi/web-frontend
f0456dd37f53a1285cf426e6ea8cf3021aae645e
app/views/layout.hbs
app/views/layout.hbs
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>WebRTC LiveChat</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" type="text/css" href="css/style.css"> </head> <body> 123 {{{body}}} <script src="js/bundle.js"></script> </body> </html>
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>WebRTC LiveChat</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" type="text/css" href="css/style.css"> </head> <body> {{{body}}} <script src="js/bundle.js"></script> </body> </html>
Change Riot to React. Add homepage, tmplating, configuring express
Change Riot to React. Add homepage, tmplating, configuring express
Handlebars
mit
mtolgobolsky/webRTC-app
9d83b2c4670a7617f572af88944a3e4b46ca3d16
widgets/share/twitter.hbs
widgets/share/twitter.hbs
<a href="https://twitter.com/share?text={{text}}" target="_blank">{{label}}</a>
<a class="hull-share hull-share--twitter" href="https://twitter.com/share?text={{text}}" target="_blank">{{label}}</a>
Add classes to share widget
Add classes to share widget
Handlebars
mit
hull/hull-js,hull/hull-js,hull/hull-js
cb295db3bea8863d774333d22f5b4f2931a72a70
share/spice/packagist/footer.handlebars
share/spice/packagist/footer.handlebars
<span class="sep--after text--secondary"><i class="ddgsi ddgsi-download"></i> {{downloads}}</span><a href="{{repository}}" title="View on GitHub" class="text--secondary"><i class="ddgsi ddgsi-star"></i> {{favers}}</a>
<div class="one-line text--secondary"> <i class="ddgsi ddgsi-download"></i> {{downloads}} • <a class="text--secondary" href="{{repository}}" title="View on GitHub"> <i class="ddgsi ddgsi-star"></i> {{favers}} </a> </div>
Use bullet divider in Packagist tiles
Use bullet divider in Packagist tiles
Handlebars
apache-2.0
levaly/zeroclickinfo-spice,marianosimone/zeroclickinfo-spice,levaly/zeroclickinfo-spice,soleo/zeroclickinfo-spice,TomBebbington/zeroclickinfo-spice,cylgom/zeroclickinfo-spice,kevintab95/zeroclickinfo-spice,kevintab95/zeroclickinfo-spice,kevintab95/zeroclickinfo-spice,levaly/zeroclickinfo-spice,TomBebbington/zeroclickinfo-spice,bigcurl/zeroclickinfo-spice,bigcurl/zeroclickinfo-spice,xaviervalarino/zeroclickinfo-spice,deserted/zeroclickinfo-spice,MoriTanosuke/zeroclickinfo-spice,levaly/zeroclickinfo-spice,iambibhas/zeroclickinfo-spice,lerna/zeroclickinfo-spice,iambibhas/zeroclickinfo-spice,P71/zeroclickinfo-spice,lerna/zeroclickinfo-spice,levaly/zeroclickinfo-spice,cylgom/zeroclickinfo-spice,P71/zeroclickinfo-spice,kevintab95/zeroclickinfo-spice,marianosimone/zeroclickinfo-spice,lerna/zeroclickinfo-spice,iambibhas/zeroclickinfo-spice,whalenrp/zeroclickinfo-spice,iambibhas/zeroclickinfo-spice,xaviervalarino/zeroclickinfo-spice,soleo/zeroclickinfo-spice,lernae/zeroclickinfo-spice,deserted/zeroclickinfo-spice,marianosimone/zeroclickinfo-spice,cylgom/zeroclickinfo-spice,lernae/zeroclickinfo-spice,lerna/zeroclickinfo-spice,bigcurl/zeroclickinfo-spice,deserted/zeroclickinfo-spice,imwally/zeroclickinfo-spice,soleo/zeroclickinfo-spice,P71/zeroclickinfo-spice,imwally/zeroclickinfo-spice,MoriTanosuke/zeroclickinfo-spice,imwally/zeroclickinfo-spice,P71/zeroclickinfo-spice,MoriTanosuke/zeroclickinfo-spice,lernae/zeroclickinfo-spice,imwally/zeroclickinfo-spice,bigcurl/zeroclickinfo-spice,xaviervalarino/zeroclickinfo-spice,levaly/zeroclickinfo-spice,whalenrp/zeroclickinfo-spice,MoriTanosuke/zeroclickinfo-spice,soleo/zeroclickinfo-spice,soleo/zeroclickinfo-spice,kevintab95/zeroclickinfo-spice,MoriTanosuke/zeroclickinfo-spice,iambibhas/zeroclickinfo-spice,lernae/zeroclickinfo-spice,whalenrp/zeroclickinfo-spice,marianosimone/zeroclickinfo-spice,cylgom/zeroclickinfo-spice,whalenrp/zeroclickinfo-spice,deserted/zeroclickinfo-spice,TomBebbington/zeroclickinfo-spice,whalenrp/zeroclickinfo-spice,cylgom/zeroclickinfo-spice,lernae/zeroclickinfo-spice,marianosimone/zeroclickinfo-spice,soleo/zeroclickinfo-spice,bigcurl/zeroclickinfo-spice,whalenrp/zeroclickinfo-spice,deserted/zeroclickinfo-spice,kevintab95/zeroclickinfo-spice,xaviervalarino/zeroclickinfo-spice,marianosimone/zeroclickinfo-spice,TomBebbington/zeroclickinfo-spice,deserted/zeroclickinfo-spice,lerna/zeroclickinfo-spice,lernae/zeroclickinfo-spice,cylgom/zeroclickinfo-spice,iambibhas/zeroclickinfo-spice,bigcurl/zeroclickinfo-spice,xaviervalarino/zeroclickinfo-spice,xaviervalarino/zeroclickinfo-spice,imwally/zeroclickinfo-spice
ec56777239cca9f32abf51e1c184f5c9db6c7f00
app/templates/components/page-numbers.hbs
app/templates/components/page-numbers.hbs
<div class="pagination-centered"> <ul class="pagination"> {{#if canStepBackward}} <li class="arrow prev enabled-arrow"> <a href="#" {{action "incrementPage" -1}}>&laquo;</a> </li> {{else}} <li class="arrow prev disabled"> <a href="#" {{action "incrementPage" -1}}>&laquo;</a> </li> {{/if}} {{#each item in pageItems}} {{#if item.dots}} <li class="dots disabled"> <span>...</span> </li> {{/if}} {{#if item.current}} <li class="active page-number"> <a href="#">{{item.page}}</a> </li> {{else}} <li class="page-number"> <a href="#" {{action "pageClicked" item.page}}>{{item.page}}</a> </li> {{/if}} {{/each}} {{#if canStepForward}} <li class="arrow next enabled-arrow"> <a href="#" {{action "incrementPage" 1}}>&raquo;</a> </li> {{else}} <li class="arrow next disabled"> <a href="#" {{action "incrementPage" 1}}>&raquo;</a> </li> {{/if}} </ul> </div>
<div class="pagination-centered"> <ul class="pagination"> {{#if canStepBackward}} <li class="arrow prev enabled-arrow"> <a href="#" {{action "incrementPage" -1}}>&laquo;</a> </li> {{else}} <li class="arrow prev disabled"> <a href="#" {{action "incrementPage" -1}}>&laquo;</a> </li> {{/if}} {{#each pageItems as |item|}} {{#if item.dots}} <li class="dots disabled"> <span>...</span> </li> {{/if}} {{#if item.current}} <li class="active page-number"> <a href="#">{{item.page}}</a> </li> {{else}} <li class="page-number"> <a href="#" {{action "pageClicked" item.page}}>{{item.page}}</a> </li> {{/if}} {{/each}} {{#if canStepForward}} <li class="arrow next enabled-arrow"> <a href="#" {{action "incrementPage" 1}}>&raquo;</a> </li> {{else}} <li class="arrow next disabled"> <a href="#" {{action "incrementPage" 1}}>&raquo;</a> </li> {{/if}} </ul> </div>
Fix deprecation notices with each
Fix deprecation notices with each
Handlebars
mit
garno/ember-cli-pagination,garno/ember-cli-pagination
dec2916c05473120732a4506cab0ce769166ac96
views/index.hbs
views/index.hbs
<div class="row"> <div class="col-md-12"> <div data-question-id="{{question.id}}" class="question"> <h3>Survey Question</h3> <p>{{question.title}}</p> {{#each question.choices}} <a data-choice-id="{{id}}" class="btn btn-primary" href="#">{{text}}</a> {{/each}} </div> </div> </div> <!-- /.row -->
<div class="row"> <div class="col-md-12"> <div id="question" data-question-id="{{question.id}}"> <h3>Survey Question</h3> <p>{{question.title}}</p> {{#each question.choices}} <a data-choice-id="{{id}}" class="choice btn btn-primary" href="#">{{text}}</a> {{/each}} </div> </div> </div> <!-- /.row -->
Prepare IDs/classes for jQuery usage.
Prepare IDs/classes for jQuery usage.
Handlebars
mit
thirdtruck/sumo-survey,thirdtruck/sumo-survey
151a05078ad222ed41d9bcb07f0e05cfcdc9cdf0
app/templates/components/google-map.hbs
app/templates/components/google-map.hbs
<div class="map-canvas"></div> <div style="display: none;"> <ul> {{#each _markers itemViewClass=markerViewClass as |marker|}} <li>{{marker.title}} @ {{marker.lat}},{{marker.lng}}</li> {{#if view.hasInfoWindow}} {{view 'google-map/info-window' context=marker}} {{/if}} {{/each}} </ul> <ul> {{#each _infoWindows as |iw|}} {{view infoWindowViewClass context=iw}} {{/each}} </ul> <ul> {{each _polylines itemViewClass=polylineViewClass as |polyline|}} </ul> <ul> {{each _polygons itemViewClass=polygonViewClass as |polygon|}} </ul> <ul> {{each _circles itemViewClass=circleViewClass as |circle|}} </ul> </div>
<div class="map-canvas"></div> <div style="display: none;"> <ul> {{#each _markers itemViewClass=markerViewClass as |marker|}} <li>{{marker.title}} @ {{marker.lat}},{{marker.lng}}</li> {{#if view.hasInfoWindow}} {{view 'google-map/info-window' context=marker}} {{/if}} {{/each}} </ul> <ul> {{#each _infoWindows as |iw|}} {{view infoWindowViewClass context=iw}} {{/each}} </ul> <ul> {{#each _polylines itemViewClass=polylineViewClass as |polyline|}} {{/each}} </ul> <ul> {{#each _polygons itemViewClass=polygonViewClass as |polygon|}} {{/each}} </ul> <ul> {{#each _circles itemViewClass=circleViewClass as |circle|}} {{/each}} </ul> </div>
Change `each` helpers to block form.
[FIX] Change `each` helpers to block form.
Handlebars
mit
ssendev/ember-google-map,huafu/ember-google-map,jedrula/ember-google-map,dioptre/ember-google-map,SamvelRaja/ember-google-map,dioptre/ember-google-map,jedrula/ember-google-map,oswaldoacauan/ember-google-map,ssendev/ember-google-map,jedrula/ember-google-map,SamvelRaja/ember-google-map,oswaldoacauan/ember-google-map,huafu/ember-google-map,lukemcfarlane/ember-google-map,huafu/ember-google-map,lukemcfarlane/ember-google-map,dioptre/ember-google-map,lukemcfarlane/ember-google-map,oswaldoacauan/ember-google-map,ssendev/ember-google-map,SamvelRaja/ember-google-map
19b6e9492445639277701c3c2ae755c044ea7132
engines/financial_disclosure/app/assets/javascripts/financial_disclosure/templates/funder.hbs
engines/financial_disclosure/app/assets/javascripts/financial_disclosure/templates/funder.hbs
<div class="dataset"> {{input type="text" name="name" value=funder.name class="form-control" placeholder="Funder"}} {{input type="text" name="grant_number" value=funder.grantNumber class="form-control" placeholder="Grant Number"}} {{input type="text" name="website" value=funder.website class="form-control" placeholder="Website"}} <div class="question"> <div class="question-text">Authors who received funding</div> <div class="chosen-style-override"> {{chosen content=allAuthors name="authors" data-placeholder="Choose Author Name" selection=fundedAuthors optionValuePath="content" optionLabelPath="content.fullName" class="chosen-author form-control" multiple=true changeAction="addFundedAuthors"}} </div> OR <a {{action "viewCard" authorsTask}}>Add author</a> </div> </br> <div class="question"> <div class="question-text"> Did the funder have a role in study design, data collection and analysis, decision to publish, or preparation of the manuscript? </div> {{binary-radio-button name="funder-had-influence" selection=funder.funderHadInfluence}} {{#if funder.funderHadInfluence}} <p> Describe the role of any sponsors or funders in the study design, data collection and analysis, decision to publish, or preparation of the manuscript. {{textarea value=funder.funderInfluenceDescription class="form-control"}} </p> {{/if}} </div> </div>
<div class="dataset"> {{input type="text" name="name" value=funder.name class="form-control" placeholder="Funder"}} {{input type="text" name="grant_number" value=funder.grantNumber class="form-control" placeholder="Grant Number"}} {{input type="text" name="website" value=funder.website class="form-control" placeholder="Website"}} <div class="question"> <div class="question-text">Authors who received funding</div> <div class="chosen-style-override"> {{chosen content=allAuthors name="authors" data-placeholder="Choose Author Name" selection=fundedAuthors optionValuePath="content" optionLabelPath="content.fullName" class="chosen-author form-control" multiple=true changeAction="addFundedAuthors"}} </div> </div> </br> <div class="question"> <div class="question-text"> Did the funder have a role in study design, data collection and analysis, decision to publish, or preparation of the manuscript? </div> {{binary-radio-button name="funder-had-influence" selection=funder.funderHadInfluence index=funder.id}} {{#if funder.funderHadInfluence}} <p> Describe the role of any sponsors or funders in the study design, data collection and analysis, decision to publish, or preparation of the manuscript. {{textarea value=funder.funderInfluenceDescription class="form-control"}} </p> {{/if}} </div> </div>
Hide add authors link …till we decide how we implement it
Hide add authors link …till we decide how we implement it
Handlebars
mit
johan--/tahi,johan--/tahi,johan--/tahi,johan--/tahi
054790affb85a4d54f99205c4cc1d1bbad96f230
backend/app/assets/javascripts/spree/backend/templates/orders/customer_details/autocomplete.hbs
backend/app/assets/javascripts/spree/backend/templates/orders/customer_details/autocomplete.hbs
<div class='customer-autocomplete-item'> <div class='customer-details'> <h5 class="customer-email">{{customer.email}}</h5> {{#if bill_address.firstname }} <strong>{{t 'bill_address' }}</strong> {{bill_address.firstname}} {{bill_address.lastname}}<br> {{bill_address.address1}}, {{bill_address.address2}}<br> {{bill_address.city}}<br> {{#if bill_address.state_id }} {{bill_address.state.name}} {{else}} {{bill_address.state_name}} {{/if}} {{bill_address.country.name}} {{/if}} </div> </div>
<div class='customer-autocomplete-item'> <div class='customer-details'> <span class="customer-email">{{customer.email}}</span> {{#if bill_address.firstname }} <strong>{{t 'bill_address' }}</strong> {{bill_address.firstname}} {{bill_address.lastname}}<br> {{bill_address.address1}}, {{bill_address.address2}}<br> {{bill_address.city}}<br> {{#if bill_address.state_id }} {{bill_address.state.name}} {{else}} {{bill_address.state_name}} {{/if}} {{bill_address.country.name}} {{/if}} </div> </div>
Fix style looking an user on admin
Fix style looking an user on admin
Handlebars
bsd-3-clause
pervino/solidus,Arpsara/solidus,Arpsara/solidus,jordan-brough/solidus,jordan-brough/solidus,pervino/solidus,jordan-brough/solidus,Arpsara/solidus,jordan-brough/solidus,pervino/solidus,Arpsara/solidus,pervino/solidus
68e346876c5b888feeb6c3ca771cad7bf321e27f
scaffold/views/manage.jade.hbs
scaffold/views/manage.jade.hbs
extends base block title | Manage {{name}}s block main h2 Manage {{name}}s if message != '' .alert button.close(data-dismiss="alert", href="#") &times; | #{message} table.table.table-striped tr {{#each fields}}th {{#camelize}}{{field}}{{/camelize}} {{/each}} each {{name}} in {{name}}s tr {{#each fields}}td= {{field}} {{/each}} td a(href='/{{name}}s/{{#tovar}}{{name}}.id{{/tovar}}/edit') edit | | a(href='/{{name}}s/{{#tovar}}{{name}}.id{{/tovar}}/destroy', onclick='return confirm("Are you sure you want to delete this?") ? true : false') delete
extends base block title | Manage {{name}}s block main h2 Manage {{name}}s if message != '' .alert button.close(data-dismiss="alert", href="#") &times; | #{message} table.table.table-striped tr {{#each fields}}th {{#camelize}}{{field}}{{/camelize}} {{/each}}th each {{name}} in {{name}}s tr {{#each fields}}td= {{field}} {{/each}} td a(href='/{{name}}s/{{#tovar}}{{name}}.id{{/tovar}}/edit') edit | | a(href='/{{name}}s/{{#tovar}}{{name}}.id{{/tovar}}/destroy', onclick='return confirm("Are you sure you want to delete this?") ? true : false') delete
Add header column of manage links
Add header column of manage links
Handlebars
mit
MaxSvargal/otagai.js,MaxSvargal/otagai.js
16a14b8a83d1bd09dda708fedfa9691caa1f32d3
app/templates/problems/show.hbs
app/templates/problems/show.hbs
<div class="mod-problems"> <div class="col-md-6 col-problem"> <h1>Problem</h1> <div class="box"> <p id="problem">{{model.content}}</p> </div> </div> <div class="col-md-6 col-solution"> <h1>Solution</h1> {{code-box answer = model.answer submit="createSolution"}} </div> </div>
<div class="mod-problems"> <div class="col-md-6 col-problem"> <h1>Problem</h1> <div class="box"> <p class="problem-text">{{model.content}}</p> </div> </div> <div class="col-md-6 col-solution"> <h1>Solution</h1> {{code-box answer = model.answer submit="createSolution"}} </div> </div>
Add padding to problem text
Add padding to problem text
Handlebars
mit
whaambang/warm_it_up_ember
3ced56b55f6b876e18c96f3f14c20a3d00182f4a
app/components/select-input/template.hbs
app/components/select-input/template.hbs
<select class="form-control auto-width" onchange={{action (mut value) value="target.value"}}> <option value=null>Please select</option> {{#each options as |option|}} <option value={{option}} selected={{eq value option}}>{{t option}}</option> {{/each}} </select>
<select class="form-control auto-width" onchange={{action (mut value) value="target.value"}}> <option value=null>{{t 'global.selectUnselected'}}</option> {{#each options as |option|}} <option value={{option}} selected={{eq value option}}>{{t option}}</option> {{/each}} </select>
Replace "Please Select" with variable
Replace "Please Select" with variable
Handlebars
apache-2.0
CenterForOpenScience/isp,samanehsan/isp,samanehsan/isp,CenterForOpenScience/isp,CenterForOpenScience/isp,samanehsan/isp
d3922a0f705b370560b7b682abdbffb736fe2b96
generators/filter/filter.js.hbs
generators/filter/filter.js.hbs
angular.module('app.filters').filter('{{#lowercamelize}}{{name}}{{/lowercamelize}}', function() { return function() { }; });
angular.module('app.filters').filter('{{#lowercamelize}}{{name}}{{/lowercamelize}}', function() { return function(input) { }; });
Add more detail into the filter generator
Add more detail into the filter generator
Handlebars
mit
jupl/btc-angular
f416ed2e89977c14f457ceac272004929b9a36cc
content/_partials/accordion.hbs
content/_partials/accordion.hbs
{{#this}} <div class="accordion{{#if item.modifier}} accordion--{{item.modifier}}{{/if}}"{{#if item.multiselectable}} aria-multiselectable="true"{{/if}} aria-live="polite"> {{#each content.tabs}} <div class="accordion__tab{{#if content.expanded}} open{{/if}} tab--{{content.id}}" aria-controls="{{content.id}}" role="tab" data-accordionindex="#{{content.id}}"> <a href="#{{content.id}}" class="accordion__title"><span>{{content.title}}</span><i class="icon"></i></a> </div> <div id="{{content.id}}" class="accordion__panel" role="tabpanel" aria-labeledby="tab--{{content.id}}"><div class="accordion__body rte">{{content.body}}</div></div> {{/each}} </div> {{/this}}
{{#this}} <div class="accordion{{#if item.modifier}} accordion--{{item.modifier}}{{/if}}"{{#if item.multiselectable}} aria-multiselectable="true"{{/if}} aria-live="polite" role="tablist"> {{#each content.tabs}} <div id="tab--{{content.id}}" class="accordion__tab{{#if content.expanded}} open{{/if}} tab--{{content.id}}" aria-controls="{{content.id}}" role="tab" data-accordionindex="#{{content.id}}"> <a href="#{{content.id}}" class="accordion__title"><span>{{content.title}}</span><i class="icon"></i></a> </div> <div id="{{content.id}}" class="accordion__panel" role="tabpanel" aria-labelledby="tab--{{content.id}}"><div class="accordion__body rte">{{content.body}}</div></div> {{/each}} </div> {{/this}}
Update to Accordion label speeling and aria role
Update to Accordion label speeling and aria role
Handlebars
mit
AzzA-D/alloy,TheAlloyTeam/alloy,gfinbow/alloy,TheAlloyTeam/alloy,AzzA-D/alloy,jamcow/alloy,jamcow/alloy,matthewdixon/alloy,matthewdixon/alloy,gfinbow/alloy
3cfe215edd92f9366a53e3de30672e8413971beb
views/registration/email_body.handlebars
views/registration/email_body.handlebars
<p> Hi {{user.firstName}}, </p> <p> Welcome to MLA Connect! </p> <p> - The MLA Team </p>
<p> Hi {{user.firstName}}, </p> <p> Welcome to MLA Connect! </p> <p> - The MLA Team </p> <p> If you feel this email has been sent to you in error, please contact support@mlaconnect.zendesk.com </p>
Add warning to account creation email.
Add warning to account creation email.
Handlebars
apache-2.0
amida-tech/orange-api,amida-tech/orange-api,amida-tech/orange-api,amida-tech/orange-api
fb6de311c2e4923a6a1f9405685dc55e1a7062b4
hbs/_header.hbs
hbs/_header.hbs
<header> <nav class="top-bar" data-topbar> <ul class="title-area"> <li class="name"> <h1>Home</h1> {{!-- {{#link-to "index"}}Home{{/link-to}} --}} </li> <!-- Remove the class "menu-icon" to get rid of menu icon. Take out "Menu" to just have icon alone --> <li class="toggle-topbar menu-icon"><a href="#"><span>Menu</span></a></li>{{!-- --}} </ul> <section class="top-bar-section"> <!-- Right Nav Section --> <ul class="right"> {{!-- <li class="active"><a href="#">Right Button Active</a></li> --}} <li class="has-dropdown"> <a href="#">Data Options</a> <ul class="dropdown"> <li><a href="#">Full Dataset</a></li> <li><a href="#">'Lean' Dataset</a></li> </ul> </li> <li class="has-dropdown"> <a href="#">Theme</a> <ul class="dropdown"> <li><a href="#">White Label</a></li> </ul> </li> </ul> <!-- Left Nav Section --> <ul class="left"> <li>{{#link-to "index"}}Home{{/link-to}}</li> </ul> </section> </nav> </header> {{!-- <header class="row"> <nav class="column"> <ul class="no-bullet"> <li> {{#link-to "index"}}Home{{/link-to}} </li> </ul> </nav> </header> --}}
<header> <nav class="top-bar" data-topbar> <ul class="title-area"> <li class="name"> <h1>{{#link-to "index"}}Home{{/link-to}}</h1> </li> <!-- Remove the class "menu-icon" to get rid of menu icon. Take out "Menu" to just have icon alone --> <li class="toggle-topbar menu-icon"><a href="#"><span>Menu</span></a></li>{{!-- --}} </ul> <section class="top-bar-section"> <!-- Right Nav Section --> <ul class="right"> {{!-- <li class="active"><a href="#">Right Button Active</a></li> --}} <li class="has-dropdown"> <a href="#">Data Options</a> <ul class="dropdown"> <li><a href="#">Full Dataset</a></li> <li><a href="#">'Lean' Dataset</a></li> </ul> </li> <li class="has-dropdown"> <a href="#">Theme</a> <ul class="dropdown"> <li><a href="#">White Label</a></li> </ul> </li> </ul> </section> </nav> </header>
Remove 2nd home link in top nav
Remove 2nd home link in top nav
Handlebars
mit
jneurock/pattern-lib
5a80169b443a6782fceda728a603efcceaf7f721
src/main/web/templates/handlebars/partials/language-toggle.handlebars
src/main/web/templates/handlebars/partials/language-toggle.handlebars
{{!-- Urls for different language versions of the current page --}} {{#if_eq language "en"}} //{{#if (containsAny location.hostname "ons.gov.uk" "local.onsdigital.co.uk")}}www.{{/if}}{{replace location.host "cy." ""}}{{uri}}{{> list/partials/parameters}} {{/if_eq}} {{#if_eq language "cym"}} //cy.{{replace location.host "www." ""}}{{uri}}{{> list/partials/parameters}} {{/if_eq}}
{{!-- Urls for different language versions of the current page --}} {{#if_eq language "en"}} //{{#if (containsAny location.hostname "ons.gov.uk" "local.onsdigital.co.uk")}}www.{{/if}}{{replace location.hostname "cy." ""}}{{uri}}{{> list/partials/parameters}} {{/if_eq}} {{#if_eq language "cym"}} //cy.{{replace location.hostname "www." ""}}{{uri}}{{> list/partials/parameters}} {{/if_eq}}
Use hostname not host in lanugage toggle
Use hostname not host in lanugage toggle
Handlebars
mit
ONSdigital/babbage,ONSdigital/babbage,ONSdigital/babbage,ONSdigital/babbage
6dceef2a793ae456242f4675051d5ffdb61a5130
views/partials/project-file-feature.hbs
views/partials/project-file-feature.hbs
<li> <a class="spec-link" href="{{this.route}}?ref={{currentBranchName}}"> <section class="file-container group"> {{#if this.empty}} <section class="file-details"> <p class="file-name"><span class="empty-file" title="This file is empty" >&#x2205;&nbsp;&nbsp;{{this.name}}</span></p> </section> {{else if this.error}} <section class="file-details"> <p class="file-name"><span class="parse-error" title="Error parsing file.">&#x1F645;&nbsp;&nbsp;{{this.name}}</span></p> </section> {{/if}} {{#if this.data}} {{#if this.editUrl}} <button class="feature-edit call-to-action" data-edit-url="{{this.editUrl}}">Edit</button> {{/if}} <section class="feature-summary"> <p class="feature-name" title="{{this.filePath}}">{{this.data.name}}</p> {{#if this.data.description }} <p class="feature-description" title="{{this.data.description}}">{{this.data.description}}</p> {{/if }} </section> {{/if}} </section> </a> </li>
<li> <a class="spec-link" href="{{this.route}}?ref={{currentBranchName}}"> <section class="file-container group"> {{#if this.empty}} <section class="file-details"> <p class="file-name"><span class="empty-file" title="This file is empty" >&#x2205;&nbsp;&nbsp;{{this.name}}</span></p> </section> {{else if this.error}} <section class="file-details"> <p class="file-name"><span class="parse-error" title="Error parsing file.">&#x1F645;&nbsp;&nbsp;{{this.name}}</span></p> </section> {{/if}} {{#if this.data}} {{> edit_button url=this.editUrl}} <section class="feature-summary"> <p class="feature-name" title="{{this.filePath}}">{{this.data.name}}</p> {{#if this.data.description }} <p class="feature-description" title="{{this.data.description}}">{{this.data.description}}</p> {{/if }} </section> {{/if}} </section> </a> </li>
Move the edit button into a partial so it is easier to reuse.
Move the edit button into a partial so it is easier to reuse.
Handlebars
mit
oss-specs/specs,oss-specs/specs
6e11184380ca1c8b48fe1cbafe852a0107da41c3
partials/sidebar-external.hbs
partials/sidebar-external.hbs
<li><a href="https://github.com/dlecina"><i class="fa fa-github"></i>GitHub</a></li> <li><a href="https://www.linkedin.com/profile/view?id=125889251"><i class="fa fa-linkedin"></i>LinkedIn</a></li> <li><a href="https://twitter.com/alllucky7s"><i class="fa fa-twitter"></i>Twitter</a></li> <li><a href="https://plus.google.com/+DavidLecinaFuentes"><i class="fa fa-google-plus"></i>Google+</a></li> <li><a href="https://www.youtube.com/user/alllucky7s"><i class="fa fa-youtube-play"></i>YouTube</a></li> <li><a target="_blank" href="mailto:dlecina13@gmail.com"><i class="fa fa-envelope"></i>Contact</a></li> <!-- <li><a href="http://www.last.fm/user/Lucky_7s">Last.fm</a></li> <li><a href="http://steamcommunity.com/id/alllucky7s">Steam</a></li> -->
<li><a href="https://github.com/dlecina"><i class="fa fa-github"></i>GitHub</a></li> <li><a href="https://www.linkedin.com/profile/view?id=125889251"><i class="fa fa-linkedin"></i>LinkedIn</a></li> <li><a href="https://twitter.com/alllucky7s"><i class="fa fa-twitter"></i>Twitter</a></li> <li><a href="https://plus.google.com/+DavidLecinaFuentes"><i class="fa fa-google-plus"></i>Google+</a></li> <li><a href="https://www.youtube.com/user/alllucky7s"><i class="fa fa-youtube-play"></i>YouTube</a></li> <li><a href="http://steamcommunity.com/id/alllucky7s"><i class="fa fa-steam"></i>Steam</a></li> <li><a href="http://www.last.fm/user/Lucky_7s"><i class="fa fa-lastfm"></i>Last.fm</a></li> <li><a target="_blank" href="mailto:dlecina13@gmail.com"><i class="fa fa-envelope"></i>Contact</a></li>
Update external links with new FA icons
Update external links with new FA icons
Handlebars
mit
dlecina/StayPuft,TheFynx/StayPuft-Dark,TheFynx/StayPuft-Dark,happyfunboy/ghost_theme,happyfunboy/ghost_theme,dlecina/StayPuft,arangas/StayPuft,arangas/StayPuft
8b142ac632af7e27b5bd1f2489044e6f3801638c
views/warpJSClient.hbs
views/warpJSClient.hbs
<script src="{{baseUrl}}/app/WarpJSModelParser.js"></script> <script src="{{baseUrl}}/app/WarpJSClientLib.js"></script> <style> .tab-pane.active { padding-top: 10px; } </style> <script> $(document).ready(function () { var config = { viewName: "DefaultPageView", htmlElements: { rootElem: "warpPageRoot", saveButton: "NavButtonSaveA" } }; initializeWarpJS (config, function () { console.log("WarpJS: Initialization successful!"); }); }); </script> <div id="warpPageRoot"> </div>
<script src="{{baseUrl}}/app/WarpJSClientLib.js"></script> <script src="{{baseUrl}}/app/WarpJSModelParser.js"></script> <style> .tab-pane.active { padding-top: 10px; } </style> <script> $(document).ready(function () { var config = { viewName: "DefaultPageView", htmlElements: { rootElem: "warpPageRoot", saveButton: "NavButtonSaveA" } }; initializeWarpJS (config, function () { console.log("MyComplex Shop: Initialization successful!"); }); }); </script> <div id="warpPageRoot"> </div>
Support for fully dynamic UI
Support for fully dynamic UI
Handlebars
mit
WarpWorks/warpjs
03371e113e2b419225d95dd9fb2993e38046f3fc
templates/components/gh-modal-dialog.hbs
templates/components/gh-modal-dialog.hbs
<div class="modal-container js-modal-container" {{action "closeModal"}}> <article {{bind-attr class="klass :js-modal"}}> <section class="modal-content" {{action bubbles=false preventDefault=false}}> {{#if title}}<header class="modal-header"><h1>{{title}}</h1></header>{{/if}} {{#if showClose}}<a class="close" href="" title="Close" {{action "closeModal"}}><span class="hidden">Close</span></a>{{/if}} <section class="modal-body"> {{yield}} </section> {{#if confirm}} <footer class="modal-footer"> <button type="button" {{bind-attr class="acceptButtonClass :js-button-accept"}} {{action "confirm" "accept"}}> {{confirm.accept.text}} </button> <button type="button" {{bind-attr class="rejectButtonClass :js-button-reject"}} {{action "confirm" "reject"}}> {{confirm.reject.text}} </button> </footer> {{/if}} </section> </article> </div> <div class="modal-background fade js-modal-background"></div>
<div class="modal-container js-modal-container" {{action "closeModal"}}> <article {{bind-attr class="klass :js-modal"}}> <section class="modal-content" {{action bubbles=false preventDefault=false}}> {{#if title}}<header class="modal-header"><h1>{{title}}</h1></header>{{/if}} {{#if showClose}}<a class="close" href="" title="Close" {{action "closeModal"}}><span class="hidden">Close</span></a>{{/if}} <section class="modal-body"> {{yield}} </section> {{#if confirm}} <footer class="modal-footer"> <button type="button" {{bind-attr class="rejectButtonClass :js-button-reject"}} {{action "confirm" "reject"}}> {{confirm.reject.text}} </button> <button type="button" {{bind-attr class="acceptButtonClass :js-button-accept"}} {{action "confirm" "accept"}}> {{confirm.accept.text}} </button> </footer> {{/if}} </section> </article> </div> <div class="modal-background fade js-modal-background"></div>
Swap button-order on modal dialogs
Swap button-order on modal dialogs Issue #4583 - Delete button should be on the right, cancel on the left, for all modal dialogs.
Handlebars
mit
kevinansfield/Ghost-Admin,acburdine/Ghost-Admin,TryGhost/Ghost-Admin,JohnONolan/Ghost-Admin,dbalders/Ghost-Admin,airycanon/Ghost-Admin,dbalders/Ghost-Admin,acburdine/Ghost-Admin,TryGhost/Ghost-Admin,kevinansfield/Ghost-Admin,JohnONolan/Ghost-Admin,airycanon/Ghost-Admin
53923727c30c861df6e1864b171a3739055015b3
app/components/layer-file/template.hbs
app/components/layer-file/template.hbs
<div class=""> <h2>{{layer.settings.properties.sectionTitle}}</h2> {{#if layer.settings.description}} <p> {{layer.settings.description}} </p> {{/if}} {{#if layer.settings.properties.showFileviewer}} {{file-renderer download=layer.settings.properties.downloadLink width="100%" height="1000" allowfullscreen=true}} {{/if}} <a class="btn pull-right btn-info btn-outline-cus btn-lg" href={{layer.settings.properties.downloadLink}} >Download {{fa-icon "download"}}</a> </div>
<div class=""> <h2>{{layer.settings.properties.sectionTitle}}</h2> {{#if layer.settings.description}} <p> {{layer.settings.description}} </p> {{/if}} {{#if layer.settings.properties.showFileviewer}} <div class="m-v-lg"> {{file-renderer download=layer.settings.properties.downloadLink width="100%" height="1000" allowfullscreen=true}} </div> {{/if}} <a class="btn pull-right btn-info btn-outline-cus btn-lg" href={{layer.settings.properties.downloadLink}} >Download {{fa-icon "download"}}</a> </div>
Add spacing to file viewer
Add spacing to file viewer
Handlebars
apache-2.0
Rytiggy/osfpages,Rytiggy/osfpages,caneruguz/osfpages,caneruguz/osfpages
0f8d33c488e3f8550db63a1cdf25598bdbf9e729
static/templates/email_address_hint.handlebars
static/templates/email_address_hint.handlebars
{{! Explanation of the stream email address }} <div> <p>{{#tr this}}You can send emails to __page_params.product_name__! Just copy and use this address as an email recipient, and:{{/tr}}</p> <img class="subscription-email-hint-image" src="static/images/integrations/zulip_mail.png" /> <ul> <li>{{t "The email will be forwarded to this stream" }}</li> <li>{{#tr this}}The email subject will become the __page_params.product_name__ topic{{/tr}}</li> <li>{{#tr this}}The email body will become the __page_params.product_name__ message{{/tr}}</li> </ul> </div>
{{! Explanation of the stream email address }} <div> <p>{{#tr this}}You can send emails to __page_params.product_name__! Just copy and use this address as an email recipient, and:{{/tr}}</p> <img class="subscription-email-hint-image" src="/static/images/integrations/zulip_mail.png" /> <ul> <li>{{t "The email will be forwarded to this stream" }}</li> <li>{{#tr this}}The email subject will become the __page_params.product_name__ topic{{/tr}}</li> <li>{{#tr this}}The email body will become the __page_params.product_name__ message{{/tr}}</li> </ul> </div>
Fix URL for zulip_main.png for i18n site.
Fix URL for zulip_main.png for i18n site.
Handlebars
apache-2.0
arpith/zulip,Juanvulcano/zulip,kou/zulip,susansls/zulip,AZtheAsian/zulip,ryanbackman/zulip,Diptanshu8/zulip,Diptanshu8/zulip,susansls/zulip,kou/zulip,kou/zulip,joyhchen/zulip,Juanvulcano/zulip,blaze225/zulip,dhcrzf/zulip,dhcrzf/zulip,christi3k/zulip,Jianchun1/zulip,joyhchen/zulip,niftynei/zulip,jphilipsen05/zulip,paxapy/zulip,sharmaeklavya2/zulip,Jianchun1/zulip,SmartPeople/zulip,punchagan/zulip,blaze225/zulip,peguin40/zulip,brockwhittaker/zulip,reyha/zulip,brockwhittaker/zulip,calvinleenyc/zulip,souravbadami/zulip,susansls/zulip,vikas-parashar/zulip,zulip/zulip,Juanvulcano/zulip,jrowan/zulip,rishig/zulip,JPJPJPOPOP/zulip,showell/zulip,kou/zulip,SmartPeople/zulip,synicalsyntax/zulip,aakash-cr7/zulip,arpith/zulip,dhcrzf/zulip,tommyip/zulip,souravbadami/zulip,dhcrzf/zulip,synicalsyntax/zulip,samatdav/zulip,eeshangarg/zulip,dawran6/zulip,hackerkid/zulip,AZtheAsian/zulip,mahim97/zulip,vikas-parashar/zulip,amanharitsh123/zulip,KingxBanana/zulip,TigorC/zulip,calvinleenyc/zulip,verma-varsha/zulip,souravbadami/zulip,brainwane/zulip,timabbott/zulip,jphilipsen05/zulip,dawran6/zulip,isht3/zulip,TigorC/zulip,joyhchen/zulip,jainayush975/zulip,Jianchun1/zulip,verma-varsha/zulip,eeshangarg/zulip,ahmadassaf/zulip,jackrzhang/zulip,arpith/zulip,vabs22/zulip,showell/zulip,sharmaeklavya2/zulip,krtkmj/zulip,andersk/zulip,reyha/zulip,calvinleenyc/zulip,mohsenSy/zulip,zulip/zulip,zulip/zulip,ryanbackman/zulip,reyha/zulip,vabs22/zulip,arpith/zulip,sharmaeklavya2/zulip,eeshangarg/zulip,joyhchen/zulip,eeshangarg/zulip,JPJPJPOPOP/zulip,vikas-parashar/zulip,AZtheAsian/zulip,andersk/zulip,umkay/zulip,Jianchun1/zulip,zacps/zulip,isht3/zulip,mohsenSy/zulip,grave-w-grave/zulip,punchagan/zulip,timabbott/zulip,calvinleenyc/zulip,paxapy/zulip,vaidap/zulip,SmartPeople/zulip,shubhamdhama/zulip,umkay/zulip,Jianchun1/zulip,ahmadassaf/zulip,ryanbackman/zulip,krtkmj/zulip,susansls/zulip,rishig/zulip,amanharitsh123/zulip,Galexrt/zulip,jainayush975/zulip,grave-w-grave/zulip,ahmadassaf/zulip,samatdav/zulip,zacps/zulip,rishig/zulip,reyha/zulip,sharmaeklavya2/zulip,paxapy/zulip,sonali0901/zulip,synicalsyntax/zulip,niftynei/zulip,krtkmj/zulip,grave-w-grave/zulip,mohsenSy/zulip,sonali0901/zulip,mahim97/zulip,arpith/zulip,amyliu345/zulip,vikas-parashar/zulip,souravbadami/zulip,mohsenSy/zulip,amyliu345/zulip,SmartPeople/zulip,brockwhittaker/zulip,hackerkid/zulip,peguin40/zulip,dhcrzf/zulip,krtkmj/zulip,rht/zulip,tommyip/zulip,hackerkid/zulip,cosmicAsymmetry/zulip,dhcrzf/zulip,AZtheAsian/zulip,dawran6/zulip,dattatreya303/zulip,timabbott/zulip,peguin40/zulip,rht/zulip,dattatreya303/zulip,jrowan/zulip,j831/zulip,brainwane/zulip,vaidap/zulip,aakash-cr7/zulip,vikas-parashar/zulip,synicalsyntax/zulip,andersk/zulip,brainwane/zulip,umkay/zulip,umkay/zulip,rht/zulip,jrowan/zulip,Diptanshu8/zulip,peguin40/zulip,vabs22/zulip,cosmicAsymmetry/zulip,isht3/zulip,jackrzhang/zulip,shubhamdhama/zulip,j831/zulip,Diptanshu8/zulip,eeshangarg/zulip,amyliu345/zulip,sup95/zulip,SmartPeople/zulip,Galexrt/zulip,sonali0901/zulip,Galexrt/zulip,paxapy/zulip,vaidap/zulip,peguin40/zulip,tommyip/zulip,niftynei/zulip,sonali0901/zulip,shubhamdhama/zulip,j831/zulip,amyliu345/zulip,christi3k/zulip,AZtheAsian/zulip,KingxBanana/zulip,cosmicAsymmetry/zulip,isht3/zulip,verma-varsha/zulip,jphilipsen05/zulip,punchagan/zulip,JPJPJPOPOP/zulip,blaze225/zulip,christi3k/zulip,zulip/zulip,zulip/zulip,Galexrt/zulip,zacps/zulip,dhcrzf/zulip,blaze225/zulip,Galexrt/zulip,joyhchen/zulip,sup95/zulip,zacps/zulip,krtkmj/zulip,sharmaeklavya2/zulip,ryanbackman/zulip,sharmaeklavya2/zulip,christi3k/zulip,kou/zulip,vaidap/zulip,Diptanshu8/zulip,punchagan/zulip,jrowan/zulip,rishig/zulip,jackrzhang/zulip,umkay/zulip,synicalsyntax/zulip,hackerkid/zulip,christi3k/zulip,Diptanshu8/zulip,aakash-cr7/zulip,calvinleenyc/zulip,brainwane/zulip,grave-w-grave/zulip,showell/zulip,Jianchun1/zulip,JPJPJPOPOP/zulip,Juanvulcano/zulip,andersk/zulip,dawran6/zulip,blaze225/zulip,tommyip/zulip,ahmadassaf/zulip,PhilSk/zulip,jainayush975/zulip,JPJPJPOPOP/zulip,susansls/zulip,aakash-cr7/zulip,zacps/zulip,shubhamdhama/zulip,mohsenSy/zulip,jackrzhang/zulip,sup95/zulip,rht/zulip,niftynei/zulip,vaidap/zulip,brockwhittaker/zulip,j831/zulip,grave-w-grave/zulip,aakash-cr7/zulip,punchagan/zulip,mahim97/zulip,aakash-cr7/zulip,jrowan/zulip,timabbott/zulip,reyha/zulip,timabbott/zulip,arpith/zulip,showell/zulip,sup95/zulip,rishig/zulip,amanharitsh123/zulip,souravbadami/zulip,andersk/zulip,Juanvulcano/zulip,jackrzhang/zulip,KingxBanana/zulip,j831/zulip,isht3/zulip,timabbott/zulip,andersk/zulip,punchagan/zulip,punchagan/zulip,zacps/zulip,vabs22/zulip,ryanbackman/zulip,joyhchen/zulip,andersk/zulip,cosmicAsymmetry/zulip,grave-w-grave/zulip,verma-varsha/zulip,jphilipsen05/zulip,souravbadami/zulip,reyha/zulip,calvinleenyc/zulip,dattatreya303/zulip,zulip/zulip,jphilipsen05/zulip,niftynei/zulip,amanharitsh123/zulip,timabbott/zulip,sup95/zulip,jackrzhang/zulip,tommyip/zulip,ahmadassaf/zulip,paxapy/zulip,krtkmj/zulip,samatdav/zulip,dattatreya303/zulip,vaidap/zulip,susansls/zulip,peguin40/zulip,kou/zulip,mohsenSy/zulip,sonali0901/zulip,ahmadassaf/zulip,dawran6/zulip,hackerkid/zulip,TigorC/zulip,vabs22/zulip,dattatreya303/zulip,krtkmj/zulip,jphilipsen05/zulip,showell/zulip,blaze225/zulip,PhilSk/zulip,umkay/zulip,dawran6/zulip,umkay/zulip,samatdav/zulip,brainwane/zulip,rht/zulip,samatdav/zulip,cosmicAsymmetry/zulip,brainwane/zulip,KingxBanana/zulip,TigorC/zulip,TigorC/zulip,ryanbackman/zulip,Galexrt/zulip,samatdav/zulip,PhilSk/zulip,brockwhittaker/zulip,shubhamdhama/zulip,jainayush975/zulip,mahim97/zulip,amyliu345/zulip,showell/zulip,jainayush975/zulip,j831/zulip,Juanvulcano/zulip,ahmadassaf/zulip,mahim97/zulip,PhilSk/zulip,rishig/zulip,KingxBanana/zulip,vikas-parashar/zulip,synicalsyntax/zulip,KingxBanana/zulip,niftynei/zulip,verma-varsha/zulip,dattatreya303/zulip,tommyip/zulip,paxapy/zulip,shubhamdhama/zulip,christi3k/zulip,sonali0901/zulip,AZtheAsian/zulip,rht/zulip,kou/zulip,TigorC/zulip,jackrzhang/zulip,jainayush975/zulip,brainwane/zulip,PhilSk/zulip,tommyip/zulip,amyliu345/zulip,showell/zulip,hackerkid/zulip,zulip/zulip,JPJPJPOPOP/zulip,mahim97/zulip,jrowan/zulip,rishig/zulip,amanharitsh123/zulip,PhilSk/zulip,eeshangarg/zulip,eeshangarg/zulip,verma-varsha/zulip,sup95/zulip,isht3/zulip,cosmicAsymmetry/zulip,vabs22/zulip,SmartPeople/zulip,shubhamdhama/zulip,amanharitsh123/zulip,Galexrt/zulip,rht/zulip,synicalsyntax/zulip,hackerkid/zulip,brockwhittaker/zulip
c59529f527999e77363fd1526e1e0283a07d7f45
app-shell-demo/src/views/index.handlebars
app-shell-demo/src/views/index.handlebars
<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>iFixit Progressive Web App</title> <link rel="icon" sizes="192x192" href="/images/fist-enclosed-black.png"> <link rel="manifest" href="/manifest.json"> <base target="_blank"> <style> {{inlineStyles}} </style> </head> <body> <main>{{{reactHtml}}}</main> <script> window.__STATE__ = {{{state}}}; </script> <link rel="stylesheet" href="/rev/{{revManifest.[styles/all.css]}}"> <script src="/rev/{{revManifest.[js/third-party.js]}}"></script> <script src="/rev/{{revManifest.[js/app.js]}}"></script> <script src="/rev/{{revManifest.[js/register-service-worker.js]}}"></script> </body> </html>
<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>iFixit Progressive Web App</title> <link rel="icon" sizes="192x192" href="/images/fist-enclosed-black.png"> <link rel="manifest" href="/manifest.json"> <base target="_blank"> <style> {{inlineStyles}} </style> </head> <body> <main>{{{reactHtml}}}</main> <script> window.__STATE__ = {{{state}}}; </script> <script> (function() { var linkElement = document.createElement('link'); linkElement.rel = 'stylesheet'; linkElement.type = 'text/css'; linkElement.media = 'screen'; linkElement.href = '/rev/{{revManifest.[styles/all.css]}}'; document.querySelector('head').appendChild(linkElement); })(); </script> <script src="/rev/{{revManifest.[js/third-party.js]}}"></script> <script src="/rev/{{revManifest.[js/app.js]}}"></script> <script src="/rev/{{revManifest.[js/register-service-worker.js]}}"></script> </body> </html>
Load all.css via JS element insertion.
Load all.css via JS element insertion.
Handlebars
apache-2.0
marco-c/sw-precache,GoogleChromeLabs/sw-precache,marco-c/sw-precache,GoogleChromeLabs/sw-precache
1012db43c5db570d7d896bfc9e13859c9428250c
app/components/legend-detail/template.hbs
app/components/legend-detail/template.hbs
<iframe src= {{legend.link}} width="300" height="480" frameborder="0" style="border:0" allowfullscreen></iframe> {{legend.legendName}} <ul> {{#each legend.reviews as |review|}} {{review-tile review=review}} <br> on {{moment-format review.createdAt 'LLL'}} {{/each}} </ul>
<iframe src= {{legend.link}} width="300" height="480" frameborder="0" style="border:0" allowfullscreen></iframe> {{legend.legendName}} <ul> {{#each legend.reviews as |review|}} {{review-tile review=review}} <small> on {{moment-format review.createdAt 'LLL'}} </small> {{/each}} </ul>
Add Tag for Timestamp Put Timestamp in Small Tag to match author of the review
Add Tag for Timestamp Put Timestamp in Small Tag to match author of the review
Handlebars
mit
mwerumuchai/traffic-tracker,mwerumuchai/traffic-tracker
122eeb9decfc9d419ea18e72a105be624e73352b
login/logout.hbs
login/logout.hbs
<!DOCTYPE html> <html lang="en"> <body> <script> // Clear the auth tokens and redirect to Universe so it can clear its session localStorage.removeItem('universeAccessToken'); localStorage.removeItem('universeAccessTokenExpiration'); localStorage.removeItem('universeRefreshToken'); localStorage.removeItem('universeRefreshTokenExpiration'); window.location.href = '{{{ fanclub.links.logout }}}'; </script> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <meta name="referrer" content="origin"> </head> <body> <a id="redirect" referrerpolicy="origin" style="display:none"></a> <script> // Clear the auth tokens and redirect to Universe so it can clear its session // Make sure to remove the referrer path, to prevent a redirect loop localStorage.removeItem('universeAccessToken'); localStorage.removeItem('universeAccessTokenExpiration'); localStorage.removeItem('universeRefreshToken'); localStorage.removeItem('universeRefreshTokenExpiration'); var redirect = document.getElementById('redirect'); redirect.href = '{{{ fanclub.links.logout }}}' || '/'; redirect.click(); </script> </body> </html>
Remove the referrer path when logging out, to prevent a redirect loop
Remove the referrer path when logging out, to prevent a redirect loop
Handlebars
mit
SparkartGroupInc/universe-js,SparkartGroupInc/universe-js
fad4d42c0c5398b0d08f87f46ab2175e09c0d8cb
app/templates/components/event-edit.hbs
app/templates/components/event-edit.hbs
{{#if event.temp}}{{event.temp}}C{{/if}} {{event.dayLabel}} {{event.time}} {{yield}}
<label>Temperature: {{input type="number" value=event.temp}}</label> <label>Day: {{input type="number" value=event.day}}</label> <label>Time: {{input value=event.time}}</label> {{yield}}
Use inputs for the event data.
Use inputs for the event data.
Handlebars
mit
erbridge/iris,erbridge/iris,erbridge/gladys,erbridge/gladys
8decb7458ea5ae3c30ca0950e8a7e09f77f0913a
src/inc/jshint.hbs
src/inc/jshint.hbs
<p id="enable-js">{{#is lang "de"}}Damit diese Website korrekt und mit vollem Funktionsumfang angezeigt wird, benötigen Sie JavaScript. <a href="http://www.enable-javascript.com/de/">Wie Sie JavaScript in Ihrem Browser einschalten</a>.{{else}}For full functionality of this site it is necessary to enable JavaScript. Here are the <a href="http://www.enable-javascript.com">instructions how to enable JavaScript in your web browser</a>.{{/is}}</p>
<p id="enable-js">{{#is lang "de"}}Um diese Website in vollem Funktionsumfang anzuzeigen wird JavaScript benötigt. <a href="http://www.enable-javascript.com/de/">Wie Sie JavaScript in Ihrem Browser einschalten</a>.{{else}}For full functionality of this site it is necessary to enable JavaScript. Here are the <a href="http://www.enable-javascript.com">instructions how to enable JavaScript in your web browser</a>.{{/is}}</p>
Edit German text of the enable JS msg
Edit German text of the enable JS msg
Handlebars
mit
yellowled/yl-bp,yellowled/yl-bp
60141413a5d2b4dcf42d88fd424cb77e527ff67e
bookish/views/sign-in-out.hbs
bookish/views/sign-in-out.hbs
<button id="save-content" type="button" class="btn disabled" data-placement="bottom" title="Save all changes"><i class="icon-save"></i> Save</button> {{#if id}} <form action="logout"> <button type="submit" id="sign-out" class="btn btn-link">Sign Out</button> <span class="name">[{{name}}]</span> </form> {{else}} <!-- Set 'data-bypass' so we don't use the Backbone router to handle the link and instead go to the login page directly. --> <a href="/login" data-bypass="true" class="btn btn-primary">Sign In</a> {{/if}}
<button id="save-content" type="button" class="btn disabled" data-placement="bottom" title="Save all changes"><i class="icon-save"></i> Save</button> {{#if id}} <!-- Set 'data-bypass' so we don't use the Backbone router to handle the link and instead go to the login page directly. --> <a href="logout" data-bypass="true" id="sign-out">Sign Out</a> {{#if name}} <span class="name">[{{name}}]</span> {{/if}} {{else}} <!-- Set 'data-bypass' so we don't use the Backbone router to handle the link and instead go to the login page directly. --> <a href="/login" data-bypass="true" class="btn btn-primary">Sign In</a> {{/if}}
Clean up sign-in/out a bit
Clean up sign-in/out a bit
Handlebars
agpl-3.0
oerpub/github-bookeditor,oerpub/bookish,oerpub/github-bookeditor,oerpub/github-bookeditor,oerpub/bookish
4dcf77c205df056f0e827ee728878b37a994f069
index.hbs
index.hbs
{{!< default}} <div id="home"> <div class="posts"> <nav class="art-list"> <ul class="art-list-body"> {{#foreach posts }} <li class="art-list-item"> <div class="art-list-item-title-and-time"> <h2 class="art-list-title"><a href="{{ @blog.url }}{{ url }}">{{ title }}</a></h2> <div class="art-list-time">{{date published_at format="MMMM Do, YYYY"}}</div> {{#if featured}} <div class="art-list-time"><span style="color:#F40034;">&#10029;</span> Featured</div> {{else}}{{/if}} </div> <p>{{excerpt}} &hellip;</p> </li> {{/foreach}} </ul> </nav> </div> </div> <footer class="footer"> {{pagination}}
{{!< default}} <div id="home"> <div class="posts"> <nav class="art-list"> <ul class="art-list-body"> {{#foreach posts }} <li class="art-list-item"> <div class="art-list-item-title-and-time"> <h2 class="art-list-title"><a href="{{ @blog.url }}{{ url }}">{{ title }}</a></h2> <div class="art-list-time">{{date published_at format="MMMM Do, YYYY"}}</div> {{#if featured}} <div class="art-list-time"><span style="color:#F40034;">&#10029;</span> Featured</div> {{else}}{{/if}} </div> <p>{{excerpt}} &hellip;</p> </li> {{/foreach}} </ul> </nav> </div> </div> <footer class="footer"> {{pagination}} </footer>
Fix a html markup error
Fix a html markup error
Handlebars
mit
printesoi/ghost-bentley,printesoi/ghost-bentley
7d82dc3276c6eb7f2be397ad782992c45295000e
bluebottle/projects/templates/projects/base.hbs
bluebottle/projects/templates/projects/base.hbs
{% load bb_ember %} {% load i18n %} {% load static %} {% include 'projects/manage/main.hbs' %} {% include 'projects/manage/basics.hbs' %} {% include 'projects/manage/description.hbs' %} {% include 'projects/manage/location.hbs' %} {% include 'projects/manage/details.hbs' %} {% include 'projects/manage/project_list.hbs' %} {% include 'projects/manage/top.hbs' %} {% include 'projects/manage/updates.hbs' %} {% include 'projects/manage/generic_field.hbs' %} {% include "projects/manage.hbs" %} {% include "projects/index.hbs" %} {% include "projects/project.hbs" %} {% include "projects/bb_progressbar.hbs" %} {% include "projects/project_donation.hbs" %} {% include "projects/project_list.hbs" %} {% include "projects/project_members.hbs" %} {% include "projects/project_plan.hbs" %} {% include "projects/project_preview.hbs" %} {% include "projects/project_search_form.hbs" %} {% include "projects/project_supporter_list.hbs" %} {% include "projects/project_supporter.hbs" %}
{% load bb_ember %} {% load i18n %} {% load static %} {% include 'projects/manage/main.hbs' %} {% include 'projects/manage/basics.hbs' %} {% include 'projects/manage/description.hbs' %} {% include 'projects/manage/location.hbs' %} {% include 'projects/manage/details.hbs' %} {% include 'projects/manage/media.hbs' %} {% include 'projects/manage/project_list.hbs' %} {% include 'projects/manage/top.hbs' %} {% include 'projects/manage/updates.hbs' %} {% include 'projects/manage/generic_field.hbs' %} {% include "projects/manage.hbs" %} {% include "projects/index.hbs" %} {% include "projects/project.hbs" %} {% include "projects/bb_progressbar.hbs" %} {% include "projects/project_donation.hbs" %} {% include "projects/project_list.hbs" %} {% include "projects/project_members.hbs" %} {% include "projects/project_plan.hbs" %} {% include "projects/project_preview.hbs" %} {% include "projects/project_search_form.hbs" %} {% include "projects/project_supporter_list.hbs" %} {% include "projects/project_supporter.hbs" %}
Add project media to project create
Add project media to project create
Handlebars
bsd-3-clause
jfterpstra/bluebottle,onepercentclub/bluebottle,onepercentclub/bluebottle,jfterpstra/bluebottle,onepercentclub/bluebottle,jfterpstra/bluebottle,onepercentclub/bluebottle,onepercentclub/bluebottle,jfterpstra/bluebottle
f81e354d6a187c0bb3f4efb48bd968df7358ad32
app/templates/components/locale-chooser.hbs
app/templates/components/locale-chooser.hbs
{{#click-outside action=(action (mut isOpen) false)}} <button aria-label={{t (concat "general.language." locale.id)}} class="toggle" aria-haspopup="true" aria-expanded={{if isOpen "true" "false"}} data-level="toggle" data-test-toggle {{action "toggleMenu"}} > {{fa-icon "globe"}} <span>{{t (concat "general.language." locale.id)}}</span> </button> {{#if isOpen}} <div class="menu" role="menu"> {{#each locales as |loc|}} <button role="menuitemradio" lang={{loc.id}} tabindex="-1" aria-checked={{if (eq locale.id loc.id) "true" "false"}} data-level="item" data-test-item {{action "changeLocale" loc.id}} > {{loc.text}} </button> {{/each}} </div> {{/if}} {{/click-outside}}
{{#click-outside action=(action (mut isOpen) false)}} <button aria-label={{t (concat "general.language." locale.id)}} role="menuitem" class="toggle" aria-haspopup="true" aria-expanded={{if isOpen "true" "false"}} data-level="toggle" data-test-toggle {{action "toggleMenu"}} > {{fa-icon "globe"}} <span>{{t (concat "general.language." locale.id)}}</span> </button> {{#if isOpen}} <div class="menu" role="menu"> {{#each locales as |loc|}} <button role="menuitemradio" lang={{loc.id}} tabindex="-1" aria-checked={{if (eq locale.id loc.id) "true" "false"}} data-level="item" data-test-item {{action "changeLocale" loc.id}} > {{loc.text}} </button> {{/each}} </div> {{/if}} {{/click-outside}}
Add menuitem role to button
Add menuitem role to button Our A11y checker flagged the local choose menubar because in its closed state it doesn't contain any items. This is actually a menu with a submene, which was mostly marked up correctly, just missing this one attribute to tell screen readers that this button is an item in the menu.
Handlebars
mit
jrjohnson/frontend,jrjohnson/frontend,thecoolestguy/frontend,thecoolestguy/frontend,dartajax/frontend,dartajax/frontend,ilios/frontend,ilios/frontend
eec6a585fad66dab9ec4277ac53f19bd37dc4823
src/templates/default.hbs
src/templates/default.hbs
{{#extend "blank" htmlclass="drizzle-Layout" bodyclass="drizzle-Layout-body"}} {{#content "head" mode="append"}} <link rel="stylesheet" href="{{baseurl}}/assets/drizzle/styles/drizzle.css"> <link rel="stylesheet" href="{{baseurl}}/assets/toolkit/styles/toolkit.css"> {{/content}} {{#content "wrapper"}} {{> drizzle.nav}} <div class="drizzle-Layout-main drizzle-u-cf"> <div class="drizzle-u-pad drizzle-u-rhythm"> {{#block "body"}} {{/block}} </div> </div> {{#content "footer"}} <script src="{{baseurl}}/assets/drizzle/scripts/drizzle.js"></script> <script src="{{baseurl}}/assets/toolkit/scripts/toolkit.js"></script> {{/content}} {{/content}} {{/extend}}
{{#extend "blank" htmlclass="drizzle-Layout" bodyclass="drizzle-Layout-body"}} {{#content "head" mode="append"}} <link rel="stylesheet" href="{{baseurl}}/assets/drizzle/styles/drizzle.css"> <link rel="stylesheet" href="{{baseurl}}/assets/toolkit/styles/toolkit.css"> {{/content}} {{#content "wrapper"}} {{> drizzle.nav}} <div class="drizzle-Layout-main drizzle-u-cf"> <div class="drizzle-u-pad drizzle-u-rhythm"> {{#block "body"}} {{/block}} {{#block "footer"}} <script src="{{baseurl}}/assets/drizzle/scripts/drizzle.js"></script> <script src="{{baseurl}}/assets/toolkit/scripts/toolkit.js"></script> {{/block}} </div> </div> {{/content}} {{/extend}}
Add the footer as a block
Add the footer as a block
Handlebars
mit
cloudfour/drizzle,cloudfour/drizzle
938a05a3352ed8159d58f3156ce1444d1656bccb
app/components/team-list-wrapper/template.hbs
app/components/team-list-wrapper/template.hbs
<div local-class="aside"> <div local-class="aside-section"> {{team-list teams=teams}} </div> <div local-class="aside-section"></div> <div local-class="aside-section"> {{#link-to 'team.settings' local-class='aside-item' activeClass=(local-class 'aside-item--active')}} {{svg-jar "Gear" height="32" width="32"}} {{/link-to}} {{#intercom-launcher local-class='aside-item'}} {{svg-jar "Help" height="32" width="32"}} {{/intercom-launcher}} <div local-class="aside-item"> {{#basic-dropdown as |dropdown|}} {{#dropdown.trigger}} {{svg-jar "More" height="32" width="32"}} {{/dropdown.trigger}} {{#dropdown.content}} {{#ui-menu as |menu|}} {{#if changelogURL}} {{#menu.item link=changelogURL}}What's new?{{/menu.item}} {{/if}} {{#menu.item route=(array 'logout')}}Log Out...{{/menu.item}} {{/ui-menu}} {{/dropdown.content}} {{/basic-dropdown}} </div> </div> </div> <div local-class="main"> {{yield}} </div>
<div local-class="aside"> <div local-class="aside-section"> {{team-list teams=teams}} </div> <div local-class="aside-section"></div> <div local-class="aside-section"> {{#intercom-launcher local-class='aside-item'}} {{svg-jar "Help" height="32" width="32"}} {{/intercom-launcher}} <div local-class="aside-item"> {{#basic-dropdown as |dropdown|}} {{#dropdown.trigger}} {{svg-jar "More" height="32" width="32"}} {{/dropdown.trigger}} {{#dropdown.content}} {{#ui-menu as |menu|}} {{#if changelogURL}} {{#menu.item link=changelogURL}}What's new?{{/menu.item}} {{/if}} {{#menu.item route=(array 'logout')}}Log Out...{{/menu.item}} {{/ui-menu}} {{/dropdown.content}} {{/basic-dropdown}} </div> </div> </div> <div local-class="main"> {{yield}} </div>
Remove team-list gear icon (link to team settings)
Remove team-list gear icon (link to team settings)
Handlebars
apache-2.0
usecanvas/web-v2,usecanvas/web-v2,usecanvas/web-v2
941300fa49007b4fe040e777065e26d10e1c9f2f
page-browser-compatibility.hbs
page-browser-compatibility.hbs
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <title>Browser Compatibility Error</title> {{> meta}} <link rel="stylesheet" type="text/css" href="{{asset "css/caffeine-theme.css"}}" /> {{> head-css}} {{ghost_head}} </head> <body class="page-browser-compatibility"> <article> <section> <div class="error-body"> <h1> Looks like your coffee's gone stale. It's time for a new cup! </h1> <hr class="divider short"> <h2> {{meta_title}} runs on the latest Chrome, Firefox, Safari, and IE10+. Your browser is outdated and it may be time to upgrade. </h2> <div class="call-to-action-container"> <nav class="navigation left"> <ul class="links"> <li class="nav-blog expanded"> <a href="http://browsehappy.com/" title="Browse Happy">Click here to find out more!</a> </li> </ul> </nav> </div> </div> </section> </article> {{ghost_foot}} <script type="text/javascript" src="{{asset "js/caffeine-theme.js"}}"></script> {{> google-analytics}} </body> </html>
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <title>Browser Compatibility Error</title> {{> meta}} <link rel="stylesheet" type="text/css" href="{{asset "css/caffeine-theme.css"}}" /> {{> head-css}} {{ghost_head}} </head> <body class="page-browser-compatibility"> <article> <section> <div class="error-body"> <h1> Looks like your coffee's gone stale. It's time for a new cup! </h1> <hr class="divider short"> <h2> {{@blog.title}} runs on the latest Chrome, Firefox, Safari, and IE10+. Your browser is outdated and it may be time to upgrade. </h2> <div class="call-to-action-container"> <nav class="navigation left"> <ul class="links"> <li class="nav-blog expanded"> <a href="http://browsehappy.com/" title="Browse Happy">Click here to find out more!</a> </li> </ul> </nav> </div> </div> </section> </article> {{ghost_foot}} <script type="text/javascript" src="{{asset "js/caffeine-theme.js"}}"></script> {{> google-analytics}} </body> </html>
Fix title in browser compatibility page
Fix title in browser compatibility page
Handlebars
mit
andrewlock/caffeine-theme,andrewlock/caffeine-theme,kelyvin/kelyvin-ghost-theme,newgene/caffeine-theme,kelyvin/kelyvin-ghost-theme,kelyvin/caffeine-theme,newgene/caffeine-theme
221983e3504e417784676f4b23bde7baccaa269b
templates/umd.hbs
templates/umd.hbs
(function (root, factory) { if (typeof define === 'function' && define.amd) { // AMD. Register as an anonymous module unless amdModuleId is set define({{#if amdModuleId}}'{{amdModuleId}}', {{/if}}[{{{amdDependencies.wrapped}}}], function ({{{amdDependencies.normal}}}) { return ({{#if objectToExport}}root['{{{objectToExport}}}'] = {{/if}}factory({{dependencies}})); }); } else if (typeof exports === 'object') { // Node. Does not work with strict CommonJS, but // only CommonJS-like environments that support module.exports, // like Node. module.exports = factory({{{cjsDependencies.wrapped}}}); } else { {{#if globalAlias}}root['{{{globalAlias}}}'] = {{else}}{{#if objectToExport}}root['{{{objectToExport}}}'] = {{/if}}{{/if}}factory({{{globalDependencies.normal}}}); } }(this, function ({{dependencies}}) { {{{code}}} {{#if objectToExport}} return {{{objectToExport}}}; {{/if}} }));
(function (root, factory) { if (typeof define === 'function' && define.amd) { // AMD. Register as an anonymous module unless amdModuleId is set define({{#if amdModuleId}}'{{amdModuleId}}', {{/if}}[{{{amdDependencies.wrapped}}}], function ({{{amdDependencies.normal}}}) { return ({{#if objectToExport}}root['{{{objectToExport}}}'] = {{/if}}factory({{{amdDependencies.normal}}})); }); } else if (typeof exports === 'object') { // Node. Does not work with strict CommonJS, but // only CommonJS-like environments that support module.exports, // like Node. module.exports = factory({{{cjsDependencies.wrapped}}}); } else { {{#if globalAlias}}root['{{{globalAlias}}}'] = {{else}}{{#if objectToExport}}root['{{{objectToExport}}}'] = {{/if}}{{/if}}factory({{{globalDependencies.normal}}}); } }(this, function ({{dependencies}}) { {{{code}}} {{#if objectToExport}} return {{{objectToExport}}}; {{/if}} }));
Fix amd section of the default template
Fix amd section of the default template Closes #12.
Handlebars
mit
Download/libumd,bebraw/libumd,Download/libumd,bebraw/libumd
ef90bc439c82bfa1ce39a9cd14282eab6b651e21
app/components/rating-form/template.hbs
app/components/rating-form/template.hbs
{{#bs-form}} {{#each-in questions as |question parts|}} {{#bs-form-group}} <label>{{parts.question}}</label> {{#if (eq parts.type 'radio')}} {{#each-in parts.items as |item data|}} {{#if data.description}} <p>{{data.description}}</p> {{/if}} {{radio-group options=parts.scale labelTop=data.labelTop labels=data.labels value=data.value}} {{/each-in}} {{else if (eq parts.type 'select')}} {{select-input options=parts.scale value=parts.items.item1.value}} {{else if (eq parts.type 'radio-input')}} {{radio-group options=parts.scale value=parts.items.radio.value}} {{#if (eq parts.items.radio.value 'Yes')}} <p>{{parts.items.input.description}}</p> {{#input value=parts.input.value}}{{/input}} <br> {{/if}} {{else if (eq parts.type 'textarea')}} {{#textarea value=parts.input.value cols="100" rows="6"}}{{/textarea}} {{/if}} {{/bs-form-group}} {{/each-in}} <div class='btn btn-primary pull-right {{if (v-get this 'isInvalid') "disabled" "enabled"}}' {{action 'nextSection'}}>Continue</div> {{/bs-form}}
{{#bs-form}} {{#each-in questions as |question parts|}} {{#bs-form-group}} <label>{{parts.question}}</label> {{#if (eq parts.type 'radio')}} {{#each-in parts.items as |item data|}} {{#if data.description}} <p>{{data.description}}</p> {{/if}} {{radio-group options=parts.scale labelTop=data.labelTop labels=data.labels value=data.value}} {{/each-in}} {{else if (eq parts.type 'select')}} {{select-input options=parts.scale value=parts.items.item1.value}} {{else if (eq parts.type 'radio-input')}} {{radio-group options=parts.scale value=parts.items.radio.value}} {{#if (eq parts.items.radio.value 'Yes')}} <p>{{parts.items.input.description}}</p> {{#input value=parts.input.value}}{{/input}} <br> {{/if}} {{else if (eq parts.type 'textarea')}} {{#textarea value=parts.input.value cols="100" rows="6"}}{{/textarea}} {{/if}} {{/bs-form-group}} {{/each-in}} <div class='btn btn-primary pull-right {{if (v-get this 'isInvalid') "disabled" "enabled"}}' {{action 'nextSection'}}>Continue</div> {{progress-bar pageNumber=5}} {{/bs-form}}
Add progress-bar to last page
Add progress-bar to last page
Handlebars
apache-2.0
CenterForOpenScience/isp,samanehsan/isp,CenterForOpenScience/isp,samanehsan/isp,samanehsan/isp,CenterForOpenScience/isp
714a8528ed2341683f4fb74ef9ba29c41d6ba962
app/templates/components/badge-appveyor.hbs
app/templates/components/badge-appveyor.hbs
<a href="https://ci.appveyor.com/project/{{ repository }}"> <img src="https://ci.appveyor.com/api/projects/status/{{ service }}/{{ repository }}?svg=true&branch={{ branch }}" alt="{{ text }}" title="{{ text }}" /> </a>
<a href="https://ci.appveyor.com/project/{{ repository }}"> <img src="https://ci.appveyor.com/api/projects/status/{{ service }}/{{ repository }}?svg=true&branch={{ branch }}" alt="{{ text }}" width="106" height="20" title="{{ text }}" /> </a>
Add explicit size to appveyor badge
Add explicit size to appveyor badge
Handlebars
apache-2.0
steveklabnik/crates.io,rust-lang/crates.io,steveklabnik/crates.io,steveklabnik/crates.io,rust-lang/crates.io,rust-lang/crates.io,steveklabnik/crates.io,rust-lang/crates.io
af7c6129bfa058e07e27f1928f671d51a9713530
addon/templates/components/ember-inplace-edit.hbs
addon/templates/components/ember-inplace-edit.hbs
{{#if isEditing}} <form {{action "doneEditing" on="submit"}}> {{#if isTypeInput}} {{input value=value}} {{else}} {{textarea value=value}} {{/if}} </form> {{else}} <span> {{#if displayPlaceholder}} <div {{bind-attr class=placeholderClass}}> {{placeholder}} </div> {{else}} {{text}} {{/if}} </span> <span class="edit hide"> {{#if editIcon}} <a {{action "toggleEditing"}} {{bind-attr class=editIcon}}></a> {{else}} <a {{action "toggleEditing"}} >edit</a> {{/if}} </span> {{/if}}
{{#if isEditing}} <form {{action "doneEditing" on="submit"}}> {{#if isTypeInput}} {{input value=value}} {{else}} {{textarea value=value}} {{/if}} </form> {{else}} <span> {{#if displayPlaceholder}} <div {{bind-attr class=placeholderClass}}> {{placeholder}} </div> {{else}} {{text}} {{/if}} </span> <span class="edit hide"> {{#if editIcon}} <a {{action "toggleEditing"}} {{bind-attr class=editIcon}}></a> {{else}} <button {{action "toggleEditing"}} >edit</button> {{/if}} </span> {{/if}}
Use button for edit action
Use button for edit action
Handlebars
mit
anilmaurya/ember-inplace-edit,anilmaurya/ember-inplace-edit
71806a96d0d44e345560009d1d80c1f470c50217
resources/frontend/app/pods/tournament/template.hbs
resources/frontend/app/pods/tournament/template.hbs
<div class="row"> <div class="col s12"> <h3>{{model.name}}</h3> {{#md-tabs selected=selectedTab}} {{#link-to 'tournament.tablescore'}} {{md-tab value='tablescore' title='Tablescore'}} {{/link-to}} {{#link-to 'tournament.matches'}} {{md-tab value='matches' title='Matches'}} {{/link-to}} {{#link-to 'tournament.teams'}} {{md-tab value='teams' title='Teams'}} {{/link-to}} {{#if session.isAuthenticated}} {{#link-to 'tournament.settings'}} {{md-tab value='settings' title='Settings'}} {{/link-to}} {{/if}} {{/md-tabs}} {{outlet}} </div> </div>
<div class="row"> <div class="col s12"> <h3>{{model.name}}</h3> {{#md-tabs selected=selectedTab}} {{ggf-md.md-tab value='tablescore' title='Tablescore' link='tournament.tablescore'}} {{ggf-md.md-tab value='matches' title='Matches' link='tournament.matches'}} {{ggf-md.md-tab value='teams' title='Teams' link='tournament.teams'}} {{#if session.isAuthenticated}} {{ggf-md.md-tab value='settings' title='Settings' link='tournament.settings'}} {{/if}} {{/md-tabs}} {{outlet}} </div> </div>
Use custom md-tab component on the tournament page
Use custom md-tab component on the tournament page
Handlebars
mit
nixsolutions/ggf,nixsolutions/ggf,nixsolutions/ggf,nixsolutions/ggf
8aa58e87321bf24486a971c763faaec320a49470
templates/handlebars/videos.hbs
templates/handlebars/videos.hbs
<div class="row" id="videos"> <div class="large-8 large-offset-2"> <ul class="large-block-grid-3"> <li> <a href="#" data-reveal-id="videoModal1"> <h4 class="">Video Title Here</h4> <img class="block-radius" src="http://placehold.it/280x195"/> </a> </li> <li> <a href="#" data-reveal-id="videoModal2"> <h4 class="">Video Title Here</h4> <img class="block-radius" src="http://placehold.it/280x195"/> </a> </li> <li> <a href="#" data-reveal-id="videoModal3"> <h4 class="">Video Title Here</h4> <img class="block-radius" src="http://placehold.it/280x195"/> </a> </li> <li> <a href="#" data-reveal-id="videoModal4"> <h4 class="">Video Title Here</h4> <img class="block-radius" src="http://placehold.it/280x195"/> </a> </li> <li> <a href="#" data-reveal-id="videoModal5"> <h4 class="">Video Title Here</h4> <img class="block-radius" src="http://placehold.it/280x195"/> </a> </li> <li> <a href="#" data-reveal-id="videoModal6"> <h4 class="">Video Title Here</h4> <img class="block-radius" src="http://placehold.it/280x195"/> </a> </li> </ul> </div> </div>
<div class="row" id="videos"> <div class="large-8 large-offset-2"> {{#if items.length}} <ul class="large-block-grid-3"> {{#each items}} <li> <a href="#" data-reveal-id="video-{{ nid }}"> <h4>{{ title }}</h4> <img class="block-radius" src="http://placehold.it/280x195"/> </a> </li> {{/each}} </ul> {{/if}} </div> </div> {{#if items.length}} {{#each items}} <div id="video-{{ nid }}" class="reveal-modal large-8"> <div class="flex-video" style="-webkit-transform-origin: 0px 0px; opacity: 0; -webkit-transform: scale(1, 1); -webkit-transition: opacity 0.1s linear; transition: opacity 0.1s linear; display: none;"> <iframe src="http://player.vimeo.com/video/{{ vimeo_id }}?title=0&amp;byline=0&amp;portrait=0&amp;color=ffffff" width="100%" height="400" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe> </div> </div> {{/each}} {{/if}}
Add in the handlebars logic.
Add in the handlebars logic.
Handlebars
mit
historiclewes/pilots-kiosk,historiclewes/pilots-kiosk,historiclewes/pilots-kiosk
984790ff3c8eff868ac4b0ee9f57f37f92e889b4
src/main/resources/templates/greeting/index.html.hbs
src/main/resources/templates/greeting/index.html.hbs
{{#partial "content"}} <h1>All greetings</h1> <table class="table table-striped table-hover"> <thead> <tr> <th>Id</th> <th>Template</th> <th>Examples</th> </tr> </thead> <tbody> {{#greetings}} {{> greeting/_detail this.names}} {{/greetings}} </tbody> </table> <p> <a class="btn btn-primary" role="button" href="/greeting/new">Add a new greeting</a> </p> {{/partial}} {{> layouts/base title="All greetings"}}
{{#partial "content"}} <h1>All greetings</h1> <table class="table table-striped table-hover"> <thead> <tr> <th>Id</th> <th>Template</th> <th>Examples</th> </tr> </thead> <tbody> {{#greetings}} {{> greeting/_detail this.names}} {{/greetings}} </tbody> </table> <p> <a class="btn btn-primary" role="button" href="/greeting/new"><i class="fa fa-plus" aria-hidden="true"></i> Add a new greeting</a> </p> {{/partial}} {{> layouts/base title="All greetings"}}
Add Font Awesome-ness to the greetings index.
Add Font Awesome-ness to the greetings index.
Handlebars
bsd-3-clause
hainesr/mvc-dev,hainesr/mvc-dev
4a5529027f15d196a075fed14d0ed3b05beddb97
site/src/_includes/example-fixture.hbs
site/src/_includes/example-fixture.hbs
<div id="{{>component-id component}}" class="chart"> </div> <script type="text/javascript"> (function() { var f = createFixture('#{{>component-id component}}', null, null, null, function() { return true; }); var container = f.container, data = f.data xScale = f.xScale, yScale = f.yScale, height = f.dimensions.height, width = f.dimensions.width; {{{example-code}}} }()); </script>
<div id="{{>component-id component}}" class="chart" style="width: 100%"> </div> <script type="text/javascript"> (function() { var desiredWidth = $('#{{>component-id component}}').width(), desiredHeight = desiredWidth / 2.4; //keeps the width-height ratio at 600-250 (defaults for createFixture) var f = createFixture('#{{>component-id component}}', desiredWidth, desiredHeight, null, function() { return true; }); var container = f.container, data = f.data, xScale = f.xScale, yScale = f.yScale, height = f.dimensions.height, width = f.dimensions.width; {{{example-code}}} }()); </script>
Fix width issues for components on smaller screens
Fix width issues for components on smaller screens
Handlebars
mit
djmiley/d3fc,alisd23/d3fc-d3v4,fxcebx/d3fc,djmiley/d3fc,bjedrzejewski/d3fc,alisd23/d3fc-d3v4,alisd23/d3fc-d3v4,fxcebx/d3fc,bjedrzejewski/d3fc,bjedrzejewski/d3fc,fxcebx/d3fc,djmiley/d3fc
0ab9fcd7e222b1f38d067cb137b70871e5ae4af7
packages/templates/typescript-react-apollo/src/hoc.handlebars
packages/templates/typescript-react-apollo/src/hoc.handlebars
{{#unless @root.config.noHOC}} {{#each operations }} {{#unless @root.config.noNamespaces}} export namespace {{toPascalCase name}} { {{/unless}} export function {{#if @root.config.noNamespaces}}{{ toPascalCase name }}{{/if}}HOC<TProps = {}>(operationOptions: ReactApollo.OperationOption<TProps, {{toPascalCase operationType}}, Variables>){ return ReactApollo.graphql<TProps, {{#if @root.config.noNamespaces}}{{ toPascalCase name }}{{/if}}{{toPascalCase operationType}}, {{#if @root.config.noNamespaces}}{{ toPascalCase name }}{{/if}}Variables>( {{#unless @root.config.noGraphqlTag}}gql` {{ document }} `{{else}}{{{ gql document }}}{{/unless}}, operationOptions ) }; {{#unless @root.config.noNamespaces}} } {{/unless}} {{/each}} {{/unless}}
{{#unless @root.config.noHOC}} {{#each operations }} {{#unless @root.config.noNamespaces}} export namespace {{toPascalCase name}} { {{/unless}} export function {{#if @root.config.noNamespaces}}{{ toPascalCase name }}{{/if}}HOC<TProps = {}>(operationOptions: ReactApollo.OperationOption<TProps, {{#if @root.config.noNamespaces}}{{ toPascalCase name }}{{/if}}{{toPascalCase operationType}}, {{#if @root.config.noNamespaces}}{{ toPascalCase name }}{{/if}}Variables>){ return ReactApollo.graphql<TProps, {{#if @root.config.noNamespaces}}{{ toPascalCase name }}{{/if}}{{toPascalCase operationType}}, {{#if @root.config.noNamespaces}}{{ toPascalCase name }}{{/if}}Variables>( {{#unless @root.config.noGraphqlTag}}gql` {{ document }} `{{else}}{{{ gql document }}}{{/unless}}, operationOptions ) }; {{#unless @root.config.noNamespaces}} } {{/unless}} {{/each}} {{/unless}}
Use extended types when noNamespaces is true
Use extended types when noNamespaces is true
Handlebars
mit
dotansimha/graphql-code-generator,dotansimha/graphql-code-generator,dotansimha/graphql-code-generator
0faeb43d3a665786c1f7cae3a6e6567f5ed014ef
addon/templates/components/html-select.hbs
addon/templates/components/html-select.hbs
<select {{action 'change' on='change'}} class="form-control {{mainComponent.elementClass}}" id={{mainComponent.id}}> {{#if mainComponent.prompt}} <option value="null" selected={{eq null selectedValue}}> {{mainComponent.prompt}} </option> {{/if}} {{#each (get mainComponent "content") key="@index" as |item|}} <option value="{{get item mainComponent.optionValuePath}}" selected={{eq (get item mainComponent.optionValuePath) selectedValue}}> {{get item mainComponent.optionLabelPath}} </option> {{/each}} </select>
<select {{action 'change' on='change'}} class="form-control {{mainComponent.elementClass}}" id={{mainComponent.id}} required=mainComponent.required> {{#if mainComponent.prompt}} <option value="" selected={{eq "" selectedValue}}> {{mainComponent.prompt}} </option> {{/if}} {{#each (get mainComponent "content") key="@index" as |item|}} <option value="{{get item mainComponent.optionValuePath}}" selected={{eq (get item mainComponent.optionValuePath) selectedValue}}> {{get item mainComponent.optionLabelPath}} </option> {{/each}} </select>
Enable HTML5 required validation on em-selects
Enable HTML5 required validation on em-selects
Handlebars
apache-2.0
josefguenther/ember-rapid-forms,piceaTech/ember-rapid-forms,slannigan/computed_input_errors,piceaTech/ember-rapid-forms,josefguenther/ember-rapid-forms,slannigan/computed_input_errors
b194bafcc86aae25512bfe38816bef2394243301
app/assets/javascripts/admin/templates/email_logs.js.handlebars
app/assets/javascripts/admin/templates/email_logs.js.handlebars
<table class='table'> <tr> <th>{{i18n admin.email.sent_at}}</th> <th>{{i18n admin.email.user}}</th> <th>{{i18n admin.email.to_address}}</th> <th>{{i18n admin.email.email_type}}</th> <th>{{i18n admin.email.reply_key}}</th> </tr> {{#if model.length}} {{#group}} {{#collection contentBinding="model" tagName="tbody" itemTagName="tr"}} <td>{{date created_at}}</td> <td> {{#if user}} {{#linkTo 'adminUser' user}}{{avatar user imageSize="tiny"}}{{/linkTo}} {{#linkTo 'adminUser' user}}{{user.username}}{{/linkTo}} {{else}} &mdash; {{/if}} </td> <td><a href='mailto:{{unbound to_address}}'>{{to_address}}</a></td> <td>{{email_type}}</td> <td>{{reply_key}}</td> {{/collection}} {{/group}} {{/if}} </table>
<table class='table'> <thead> <tr> <th>{{i18n admin.email.sent_at}}</th> <th>{{i18n admin.email.user}}</th> <th>{{i18n admin.email.to_address}}</th> <th>{{i18n admin.email.email_type}}</th> <th>{{i18n admin.email.reply_key}}</th> </tr> </thead> {{#if model.length}} {{#group}} {{#collection contentBinding="model" tagName="tbody" itemTagName="tr"}} <td>{{date created_at}}</td> <td> {{#if user}} {{#linkTo 'adminUser' user}}{{avatar user imageSize="tiny"}}{{/linkTo}} {{#linkTo 'adminUser' user}}{{user.username}}{{/linkTo}} {{else}} &mdash; {{/if}} </td> <td><a href='mailto:{{unbound to_address}}'>{{to_address}}</a></td> <td>{{email_type}}</td> <td>{{reply_key}}</td> {{/collection}} {{/group}} {{/if}} </table>
Fix rendering of email logs rows. Needed thead around the first row.
Fix rendering of email logs rows. Needed thead around the first row.
Handlebars
mit
tadp/learnswift,natefinch/discourse,tadp/learnswift,natefinch/discourse,tadp/learnswift
92caddec295381602ad340df6ba3e0666d470215
views/partials/twitter-card.hbs
views/partials/twitter-card.hbs
<meta name="twitter:card" content="product"> <meta name="twitter:title" content="{{title}}"> <meta name="twitter:description" content="{{> about}}"> <meta name="twitter:image:src" content="http://enviroecon.org/img/logo-square.png"> <meta name="twitter:data1" content="{{eventDay event.start}}"> <meta name="twitter:label1" content="DATE"> <meta name="twitter:data2" content="{{#with event.venue.address}}{{city}}, {{region}}{{/with}}"> <meta name="twitter:label2" content="LOCATION"> <meta name="twitter:domain" content="enviroecon.org">
<meta name="twitter:card" content="product"> <meta name="twitter:title" content="{{title}} Conference"> <meta name="twitter:description" content="{{> about}}"> <meta name="twitter:image:src" content="http://enviroecon.org/img/logo-square.png"> <meta name="twitter:data1" content="{{eventDay event.start}}"> <meta name="twitter:label1" content="DATE"> <meta name="twitter:data2" content="{{#with event.venue.address}}{{city}}, {{region}}{{/with}}"> <meta name="twitter:label2" content="LOCATION"> <meta name="twitter:domain" content="enviroecon.org">
Update title in Twitter Card
Update title in Twitter Card
Handlebars
mit
ericf/enviroecon.org,ericf/enviroecon.org
d4c463d936c0559fd05931e45fb80e54999858d5
partials/navigation.hbs
partials/navigation.hbs
<div class="nav"> {{#foreach navigation}} {{#if current}}>> {{/if}}<a href="{{url absolute="true"}}">{{label}}</a><br> {{/foreach}} <a class="subscribe-button icon-feed" href="{{@blog.url}}/rss/">Subscribe</a> </div>
<div class="nav"> {{#foreach navigation}} <a href="{{url absolute="true"}}">{{#if current}}>> {{/if}}{{label}}</a><br> {{/foreach}} <a class="subscribe-button icon-feed" href="{{@blog.url}}/rss/">Subscribe</a> </div>
Put current page carat inside of href in nav
Put current page carat inside of href in nav
Handlebars
mit
JMarlin/ghost-trackzero,JMarlin/ghost-trackzero
a96153db374d33d0fc1ff922eead3439bbdfd72b
partials/navigation.hbs
partials/navigation.hbs
<nav> <h3 class="nav-title">Menu</h3> <ul> {{#foreach navigation}} <li class="{{slug}}{{#if current}} -active{{/if}}" role="presentation"><a href="{{url absolute="true"}}">{{label}}</a></li> {{/foreach}} </ul> <a href="{{@blog.url}}/rss/">Subscribe</a> </nav>
<nav> <h3>Menu</h3> <ul> {{#foreach navigation}} <li class="{{slug}}{{#if current}} -active{{/if}}" role="presentation"><a href="{{url absolute="true"}}">{{label}}</a></li> {{/foreach}} </ul> <a href="{{@blog.url}}/rss/">Subscribe</a> </nav>
Fix identation & Delete class
Fix identation & Delete class
Handlebars
mit
jameskolce/Axiom
da99f11cd8ebfa9872a773a64f4700d1f356dc67
SingularityUI/app/templates/taskDetail/taskOverview.hbs
SingularityUI/app/templates/taskDetail/taskOverview.hbs
{{! Part of taskBase }} <header class='detail-header'> <div class="row"> {{! Left side }} <div class="col-md-8"> {{#with data.task.taskRequest}} <h5> Request <a href="{{appRoot}}/request/{{ request.id }}"> {{ request.id }} </a> </h5> {{/with}} <h2> {{ data.task.taskId.id }} <button data-clipboard-text="{{ data.task.taskId.id }}" class='btn btn-link copy-link'> Copy </button> </h2> </div> {{! Right side, buttons }} <div class="col-md-4 button-container"> <a class="btn btn-default" data-action="viewObjectJSON"> JSON </a> <a class="btn btn-danger" data-action="remove"> Kill task </a> </div> </div> </header> {{#if data.taskUpdates}} {{#withLast data.taskUpdates}} <div class="well text-muted"> {{humanizeText taskState}} as of {{timestampFromNow timestamp}} ({{timestampFormatted timestamp}}) {{#if statusMessage}} &mdash; {{ statusMessage }} {{/if}} </div> {{/withLast}} {{/if}}
{{! Part of taskBase }} <header class='detail-header'> <div class="row"> {{! Left side }} <div class="col-md-8"> {{#with data.task.taskRequest}} <h5> Request <a href="{{appRoot}}/request/{{ request.id }}"> {{ request.id }} </a> </h5> {{/with}} <h2> {{ data.task.taskId.id }} </h2> </div> {{! Right side, buttons }} <div class="col-md-4 button-container"> <a class="btn btn-default" data-action="viewObjectJSON"> JSON </a> {{#if data.taskUpdates}} {{#withLast data.taskUpdates}} {{#ifEqual taskState 'TASK_RUNNING'}} <a class="btn btn-danger" data-action="remove"> Kill task </a> {{/ifEqual}} {{/withLast}} {{/if}} </div> </div> </header> {{#if data.taskUpdates}} {{#withLast data.taskUpdates}} <div class="well text-muted"> {{humanizeText taskState}} as of {{timestampFromNow timestamp}} ({{timestampFormatted timestamp}}) {{#if statusMessage}} &mdash; {{ statusMessage }} {{/if}} </div> {{/withLast}} {{/if}}
Kill button is only there for running tasks
Kill button is only there for running tasks
Handlebars
apache-2.0
acbellini/Singularity,nvoron23/Singularity,andrhamm/Singularity,hs-jenkins-bot/Singularity,HubSpot/Singularity,HubSpot/Singularity,hs-jenkins-bot/Singularity,acbellini/Singularity,acbellini/Singularity,acbellini/Singularity,grepsr/Singularity,calebTomlinson/Singularity,grepsr/Singularity,evertrue/Singularity,tejasmanohar/Singularity,stevenschlansker/Singularity,calebTomlinson/Singularity,HubSpot/Singularity,mjball/Singularity,evertrue/Singularity,stevenschlansker/Singularity,stevenschlansker/Singularity,acbellini/Singularity,calebTomlinson/Singularity,acbellini/Singularity,grepsr/Singularity,stevenschlansker/Singularity,tejasmanohar/Singularity,calebTomlinson/Singularity,evertrue/Singularity,calebTomlinson/Singularity,hs-jenkins-bot/Singularity,tejasmanohar/Singularity,hs-jenkins-bot/Singularity,mjball/Singularity,tejasmanohar/Singularity,nvoron23/Singularity,calebTomlinson/Singularity,grepsr/Singularity,andrhamm/Singularity,HubSpot/Singularity,evertrue/Singularity,tejasmanohar/Singularity,stevenschlansker/Singularity,tejasmanohar/Singularity,mjball/Singularity,nvoron23/Singularity,grepsr/Singularity,mjball/Singularity,grepsr/Singularity,mjball/Singularity,nvoron23/Singularity,hs-jenkins-bot/Singularity,HubSpot/Singularity,evertrue/Singularity,andrhamm/Singularity,nvoron23/Singularity,evertrue/Singularity,nvoron23/Singularity,andrhamm/Singularity,andrhamm/Singularity,stevenschlansker/Singularity
27a3ce724d1df8b34adfe69315d3eeb7f82cb6bc
app/templates/components/ui-table/cell/admin/users/cell-actions.hbs
app/templates/components/ui-table/cell/admin/users/cell-actions.hbs
<div class="ui vertical compact basic buttons"> {{#ui-popup content=(t 'Edit') class='ui icon button'}} <i class="edit icon"></i> {{/ui-popup}} {{#ui-popup tagName='a' click=(action moveToUserDetails record.id) content=(t 'View') class='ui icon button'}} <i class="unhide icon"></i> {{/ui-popup}} {{#ui-popup content=(t 'Delete') click=(action (confirm (t 'Are you sure you would like to delete this user?') (action deleteUser record))) class='ui icon button'}} <i class="trash outline icon"></i> {{/ui-popup}} </div>
<div class="ui vertical compact basic buttons"> {{#ui-popup tagName='a' click=(action moveToUserDetails record.id) content=(t 'View') class='ui icon button'}} <i class="unhide icon"></i> {{/ui-popup}} {{#unless record.isSuperAdmin}} {{#ui-popup content=(t 'Edit') class='ui icon button'}} <i class="edit icon"></i> {{/ui-popup}} {{#ui-popup content=(t 'Delete') click=(action (confirm (t 'Are you sure you would like to delete this user?') (action deleteUser record))) class='ui icon button'}} <i class="trash outline icon"></i> {{/ui-popup}} {{/unless}} </div>
Update column Actions for admin/users
Update column Actions for admin/users
Handlebars
apache-2.0
CosmicCoder96/open-event-frontend,CosmicCoder96/open-event-frontend,ritikamotwani/open-event-frontend,ritikamotwani/open-event-frontend,CosmicCoder96/open-event-frontend,ritikamotwani/open-event-frontend
b8dba47db2384deb462227318f2f2033eac46ba3
SingularityUI/app/templates/vex/requestBounce.hbs
SingularityUI/app/templates/vex/requestBounce.hbs
<p>Are you sure you want to bounce this request?</p> <pre>{{ id }}</pre> <p> Bouncing a request will cause replacement tasks to be scheduled (and under normal conditions) executed immediately. </p> <label for="incremental-bounce" id="incremental-bounce-label"> <input type="radio" name="incremental" value="false" checked> Kill old tasks once ALL new tasks are healthy<br> <input type="radio" name="incremental" id="incremental-bounce" value="true"> Kill old tasks as new tasks become healthy </label> <label for="skip-healthchecks" id="skip-healthchecks-label"> <input type="checkbox" name="skip-healthchecks" id="skip-healthchecks"> </label> <div class="vex-dialog-input expiration-input"> <input name="duration" id="bounce-expiration" type="text" placeholder="Expiration (optional - default {{ config.defaultBounceExpirationMinutes }}m)" /> </div> <span class="help">If an expiration duration is specified, this bounce will be aborted if not finished. Accepts any english time duration. (Days, Hr, Min...)</span>
<p>Are you sure you want to bounce this request?</p> <pre>{{ id }}</pre> <p> Bouncing a request will cause replacement tasks to be scheduled (and under normal conditions) executed immediately. </p> <label for="incremental-bounce" id="incremental-bounce-label"> <input type="radio" name="incremental" value="false" checked> Kill old tasks once ALL new tasks are healthy<br> <input type="radio" name="incremental" id="incremental-bounce" value="true"> Kill old tasks as new tasks become healthy </label> <label for="skip-healthchecks" id="skip-healthchecks-label"> <input type="checkbox" name="skip-healthchecks" id="skip-healthchecks"> Skip healthchecks during bounce </label> <div class="vex-dialog-input expiration-input"> <input name="duration" id="bounce-expiration" type="text" placeholder="Expiration (optional - default {{ config.defaultBounceExpirationMinutes }}m)" /> </div> <span class="help">If an expiration duration is specified, this bounce will be aborted if not finished. Accepts any english time duration. (Days, Hr, Min...)</span>
Fix change to unrelated file that broke checkbox in bounce dialogue
Fix change to unrelated file that broke checkbox in bounce dialogue
Handlebars
apache-2.0
andrhamm/Singularity,hs-jenkins-bot/Singularity,HubSpot/Singularity,HubSpot/Singularity,grepsr/Singularity,grepsr/Singularity,HubSpot/Singularity,hs-jenkins-bot/Singularity,hs-jenkins-bot/Singularity,andrhamm/Singularity,andrhamm/Singularity,HubSpot/Singularity,grepsr/Singularity,andrhamm/Singularity,grepsr/Singularity,andrhamm/Singularity,grepsr/Singularity,HubSpot/Singularity,hs-jenkins-bot/Singularity,hs-jenkins-bot/Singularity,grepsr/Singularity
7cd56610a3ba406cdee2d36fd0fda076d9bd39ef
lib/global-admin/addon/security/authentication/template.hbs
lib/global-admin/addon/security/authentication/template.hbs
{{security-header}} <section> <div class="row nav nav-boxes checked-active"> {{#each drivers as |driver|}} {{#if driver.available}} {{#if (eq driver.label "Active Directory")}} {{#if (eq app.environment "development")}} {{#link-to driver.route alt=driver.label classNames=(concat "col span-2 nav-box-item driver auth-driver " driver.css) href=false}} <p class="sr-only">{{driver.label}}</p> {{/link-to}} {{else}} <a class="col span-2 nav-box-item driver auth-driver {{driver.css}} disabled ad-coming-soon" href="#"></a> {{/if}} {{else}} {{#link-to driver.route alt=driver.label classNames=(concat "col span-2 nav-box-item driver auth-driver " driver.css) href=false}} <p class="sr-only">{{driver.label}}</p> {{/link-to}} {{/if}} {{/if}} {{/each}} </div> </section> {{outlet}}
{{security-header}} <section> <div class="row nav nav-boxes checked-active"> {{#each drivers as |driver|}} {{#if driver.available}} {{#link-to driver.route alt=driver.label classNames=(concat "col span-2 nav-box-item driver auth-driver " driver.css) href=false}} <p class="sr-only">{{driver.label}}</p> {{/link-to}} {{/if}} {{/each}} </div> </section> {{outlet}}
Add ad auth back to ui
Add ad auth back to ui
Handlebars
apache-2.0
vincent99/ui,rancherio/ui,rancher/ui,westlywright/ui,pengjiang80/ui,lvuch/ui,rancher/ui,lvuch/ui,vincent99/ui,rancherio/ui,rancherio/ui,westlywright/ui,westlywright/ui,vincent99/ui,pengjiang80/ui,lvuch/ui,rancher/ui,pengjiang80/ui
4639b558c4549548f2e3b1243043ea5f9be9b0a5
src/main/web/templates/handlebars/partials/json-ld/timeseries.handlebars
src/main/web/templates/handlebars/partials/json-ld/timeseries.handlebars
"@type": "Dataset", {{> partials/json-ld/author }} "headline": "{{description.title}}", "datePublished": "{{description.releaseDate}}", "dateModified": "{{description.releaseDate}}", "discussionURL": "{{location.hostname}}{{relatedDocuments.0.uri}}", "keywords": ["{{description.cdid}}", "{{description.datasetId}}"], {{> partials/json-ld/publisher }} "image": "{{location.hostname}}{{uri}}/linechartimage", "distribution":[ { "@type":"DataDownload", "encodingFormat":"XLS", "contentUrl": "https://{{location.hostname}}/generator?format=xls&uri={{uri}}" }, { "@type":"DataDownload", "encodingFormat":"CSV", "contentUrl": "https://{{location.hostname}}/generator?format=csv&uri={{uri}}" } ],
"@type": "Dataset", {{> partials/json-ld/author }} "headline": "{{description.title}}", "datePublished": "{{description.releaseDate}}", "dateModified": "{{description.releaseDate}}", "discussionURL": "https://{{location.hostname}}{{relatedDocuments.0.uri}}", "keywords": ["{{description.cdid}}", "{{description.datasetId}}"], {{> partials/json-ld/publisher }} "image": "https://{{location.hostname}}{{uri}}/linechartimage", "distribution":[ { "@type":"DataDownload", "encodingFormat":"XLS", "contentUrl": "https://{{location.hostname}}/generator?format=xls&uri={{uri}}" }, { "@type":"DataDownload", "encodingFormat":"CSV", "contentUrl": "https://{{location.hostname}}/generator?format=csv&uri={{uri}}" } ],
Add https to missed fields
Add https to missed fields
Handlebars
mit
ONSdigital/babbage,ONSdigital/babbage,ONSdigital/babbage,ONSdigital/babbage
9f7d1891a6136a000e6bdf6a6962932839adc91b
app/scripts/app/templates/application.hbs
app/scripts/app/templates/application.hbs
<div class="content"> {{outlet groups}} {{!-- list of groups --}} {{outlet items}} {{!-- list of items from a group --}} <div class="metadata"> {{outlet group}} {{!-- itemized description of a group --}} {{outlet groupEdit}} {{!-- group edit view --}} {{outlet item}} {{!-- itemized description of an item --}} {{outlet itemEdit}} {{!-- item edit view --}} </div> </div>
<div class="content"> {{outlet groups}} {{!-- list of groups --}} {{outlet items}} {{!-- list of items from a group --}} {{outlet group}} {{!-- itemized description of a group --}} {{outlet groupEdit}} {{!-- group edit view --}} {{outlet item}} {{!-- itemized description of an item --}} {{outlet itemEdit}} {{!-- item edit view --}} </div>
Remove extra container div around a group and its items
Remove extra container div around a group and its items
Handlebars
mit
darvelo/wishlist,darvelo/wishlist
fd09db7bac790dcd497e76be0ba609bd4737e09f
app/assets/javascripts/templates/header/avatar.hbs
app/assets/javascripts/templates/header/avatar.hbs
<li class="dropdown user-area"> <a class="dropdown-toggle navbar-avatar" data-toggle="dropdown"> {{avatar currentUser "thumb_small"}} </a> <ul class="dropdown-menu right-nav-section"> <li>{{#link-to 'user' currentUser}}<i class="fa fa-paper-plane"></i> View Profile{{/link-to}}</li> <li><a href="/users/edit"><i class="fa fa-cog"></i> Account Settings</a></li> <li><a {{action 'signOut'}}><i class="fa fa-sign-out"></i> Sign Out</a></li> </ul> </li>
<li class="dropdown user-area"> <a class="dropdown-toggle navbar-avatar" data-toggle="dropdown"> {{avatar currentUser "thumb_small"}} </a> <ul class="dropdown-menu right-nav-section"> <li>{{#link-to 'user' currentUser}}<i class="fa fa-paper-plane"></i> View Profile{{/link-to}}</li> <li><a href="/users/edit"><i class="fa fa-cog"></i> Account Settings</a></li> {{#if currentUser.isAdmin}} <li><a href="/kotodama"><i class="fa fa-rebel"></i> Kotodama</a></li> {{/if}} <li><a {{action 'signOut'}}><i class="fa fa-sign-out"></i> Sign Out</a></li> </ul> </li>
Add kotodama link for admins.
Add kotodama link for admins.
Handlebars
apache-2.0
synthtech/hummingbird,astraldragon/hummingbird,erengy/hummingbird,wlads/hummingbird,MiLk/hummingbird,MiLk/hummingbird,MiLk/hummingbird,wlads/hummingbird,hummingbird-me/hummingbird,hummingbird-me/hummingbird,jcoady9/hummingbird,vevix/hummingbird,astraldragon/hummingbird,sidaga/hummingbird,xhocquet/hummingbird,sidaga/hummingbird,NuckChorris/hummingbird,NuckChorris/hummingbird,xhocquet/hummingbird,saintsantos/hummingbird,jcoady9/hummingbird,saintsantos/hummingbird,vevix/hummingbird,jcoady9/hummingbird,wlads/hummingbird,qgustavor/hummingbird,NuckChorris/hummingbird,vevix/hummingbird,xhocquet/hummingbird,Snitzle/hummingbird,xhocquet/hummingbird,astraldragon/hummingbird,sidaga/hummingbird,paladique/hummingbird,xhocquet/hummingbird,jcoady9/hummingbird,vevix/hummingbird,wlads/hummingbird,paladique/hummingbird,qgustavor/hummingbird,xhocquet/hummingbird,saintsantos/hummingbird,erengy/hummingbird,Snitzle/hummingbird,erengy/hummingbird,MiLk/hummingbird,xhocquet/hummingbird,synthtech/hummingbird,NuckChorris/hummingbird,cybrox/hummingbird,qgustavor/hummingbird,Snitzle/hummingbird,qgustavor/hummingbird,saintsantos/hummingbird,astraldragon/hummingbird,paladique/hummingbird,paladique/hummingbird,Snitzle/hummingbird,erengy/hummingbird,sidaga/hummingbird
1fcf3bbc7d46e969d963306b6ef99abbc3162125
src/console/templates/request.hbs
src/console/templates/request.hbs
import { IsNotEmpty } from 'class-validator'; import { RequestBody } from '../../{{deepness}}core/api/RequestBody'; export class {{name.capitalize}}Request extends RequestBody { {{#if hasProperties}} {{#each properties}} @IsNotEmpty() {{name.camelCase}}: {{type.script}}; {{/each}} {{else}} // TODO Define your props here and add your needed validator annotations @IsNotEmpty() propName: string; {{/if}} }
import { IsNotEmpty } from 'class-validator'; import { RequestBody } from '../../{{deepness}}core/api/RequestBody'; export class {{name.capitalize}}Request extends RequestBody { {{#if hasProperties}} {{#each properties}} @IsNotEmpty() {{name.camelCase}}: {{type.script}}; {{/each}} {{else}} // TODO Define your props here and add your needed validator annotations @IsNotEmpty() public propName: string; {{/if}} }
Add public key word to example prop
Add public key word to example prop
Handlebars
mit
w3tecch/express-typescript-boilerplate,w3tecch/express-typescript-boilerplate,w3tecch/express-typescript-boilerplate
47aac61fdb0d2541a6155911c910a2a5d946b7a1
app/views/jst/calendar/schedulerRightSideAdminSection.handlebars
app/views/jst/calendar/schedulerRightSideAdminSection.handlebars
<div class="rs-section"> <p>The scheduler tool lets you set up time slots that students (or student groups) can sign up for. To get started, click the button below.</p> <button class="create_link btn">{{#t "create_a_new_set_of_appointments"}}Create an appointment group{{/t}}</button> </div>
<div class="rs-section"> <p>{{#t}}The scheduler tool lets you set up time slots that students (or student groups) can sign up for. To get started, click the button below.{{/t}}</p> <button class="create_link btn">{{#t "create_a_new_set_of_appointments"}}Create an appointment group{{/t}}</button> </div>
Add i18n to scheduler info text
Add i18n to scheduler info text Testing Plan * when booting up portal activate localization/internationalization action flag * go to scheduler as admin * the scheduler info text on the right side should be translated should be lolcalized Fixes CNVS-19577 Change-Id: Ia0439d3b6855e8a5daceb060d651361f3d77c50a Reviewed-on: https://gerrit.instructure.com/54768 Reviewed-by: Andrew Butterfield <c9c7a32d9a1e9779cfad12bed963960e7af36eac@instructure.com> QA-Review: Steven Shepherd <e794458448443812fb2685675aab3bbd1a3891bc@instructure.com> Tested-by: Jenkins Product-Review: Andraia Allsop <ff4759604587803e867a0cdec27733973a67065f@instructure.com>
Handlebars
agpl-3.0
sfu/canvas-lms,juoni/canvas-lms,kyroskoh/canvas-lms,eCNAP/CANVAS,shidao-fm/canvas-lms,instructure/canvas-lms,eCNAP/CANVAS,whalejasmine/canvas-lms,juoni/canvas-lms,grahamb/canvas-lms,leftplusrightllc/canvas-lms,greyhwndz/canvas-lms,snehakachroo1/LSI_replica,ShreniiNepal/shrenii_lmp,skmezanul/canvas-lms,wrdsb/canvas-lms,jay3126/canvas-lms,utkarshx/canvas-lms,juoni/canvas-lms,greyhwndz/canvas-lms,matematikk-mooc/canvas-lms,skmezanul/canvas-lms,skmezanul/canvas-lms,venturehive/canvas-lms,utkarshx/canvas-lms,dgynn/canvas-lms,Jyaasa/canvas-lms,HotChalk/canvas-lms,instructure/canvas-lms,dgynn/canvas-lms,sfu/canvas-lms,sdeleon28/canvas-lms,sfu/canvas-lms,shidao-fm/canvas-lms,HotChalk/canvas-lms,kyroskoh/canvas-lms,Rvor/canvas-lms,matematikk-mooc/canvas-lms,SwinburneOnline/canvas-lms,AndranikMarkosyan/lms,HotChalk/canvas-lms,dgynn/canvas-lms,instructure/canvas-lms,tgroshon/canvas-lms,snehakachroo1/LSI_replica,shidao-fm/canvas-lms,antoniuslin/canvas-lms,fronteerio/canvas-lms,venturehive/canvas-lms,instructure/canvas-lms,instructure/canvas-lms,HotChalk/canvas-lms,kyroskoh/canvas-lms,narigone/canvas,Rvor/canvas-lms,wrdsb/canvas-lms,leftplusrightllc/canvas-lms,redconfetti/canvas-lms,eCNAP/CANVAS,efrj/canvas-lms,redconfetti/canvas-lms,skmezanul/canvas-lms,sfu/canvas-lms,jay3126/canvas-lms,sfu/canvas-lms,snehakachroo1/LSI_replica,venturehive/canvas-lms,djbender/canvas-lms,narigone/canvas,utkarshx/canvas-lms,AndranikMarkosyan/lms,snehakachroo1/LSI_replica,jay3126/canvas-lms,Jyaasa/canvas-lms,AndranikMarkosyan/lms,fronteerio/canvas-lms,fronteerio/canvas-lms,ShreniiNepal/shrenii_lmp,grahamb/canvas-lms,efrj/canvas-lms,tgroshon/canvas-lms,venturehive/canvas-lms,SwinburneOnline/canvas-lms,juoni/canvas-lms,tgroshon/canvas-lms,SwinburneOnline/canvas-lms,roxolan/canvas-lms,leftplusrightllc/canvas-lms,ShreniiNepal/shrenii_lmp,djbender/canvas-lms,djbender/canvas-lms,matematikk-mooc/canvas-lms,sfu/canvas-lms,whalejasmine/canvas-lms,dgynn/canvas-lms,Jyaasa/canvas-lms,leftplusrightllc/canvas-lms,sdeleon28/canvas-lms,AndranikMarkosyan/lms,djbender/canvas-lms,roxolan/canvas-lms,Jyaasa/canvas-lms,sdeleon28/canvas-lms,roxolan/canvas-lms,roxolan/canvas-lms,Rvor/canvas-lms,wrdsb/canvas-lms,efrj/canvas-lms,greyhwndz/canvas-lms,antoniuslin/canvas-lms,utkarshx/canvas-lms,matematikk-mooc/canvas-lms,narigone/canvas,grahamb/canvas-lms,instructure/canvas-lms,shidao-fm/canvas-lms,sfu/canvas-lms,eCNAP/CANVAS,fronteerio/canvas-lms,antoniuslin/canvas-lms,wrdsb/canvas-lms,SwinburneOnline/canvas-lms,Rvor/canvas-lms,ShreniiNepal/shrenii_lmp,redconfetti/canvas-lms,sdeleon28/canvas-lms,grahamb/canvas-lms,narigone/canvas,tgroshon/canvas-lms,antoniuslin/canvas-lms,instructure/canvas-lms,greyhwndz/canvas-lms,whalejasmine/canvas-lms,jay3126/canvas-lms,whalejasmine/canvas-lms,kyroskoh/canvas-lms,redconfetti/canvas-lms,efrj/canvas-lms,grahamb/canvas-lms
55d904447f20c7cf88a2a3d9a44456f17a00b031
app/frontend/app/templates/reviews/index.hbs
app/frontend/app/templates/reviews/index.hbs
<div class="reviews-index col-sm-6 col-sm-offset-3"> <h1 class="series-title hidden-xs"> {{#link-to 'anime' anime.id}}{{anime.canonicalTitle}}{{/link-to}} <small><i class="fa fa-chevron-right"></i> Reviews</small> </h1> <a {{bind-attr href=newReviewURL}} class="btn btn-primary" style="margin: 3%; width: 94%"> Create a new review </a> <div class="series-reviews col-sm-12"> <div class="review-listing"> {{#each itemController="review"}} {{partial "media/review_summary"}} {{else}} {{#unless canLoadMore}} <div class="trending-review-empty"> <i class="empty-icon fa fa-meh-o"></i> <h4> Well, this is pretty awkward.</h4> <p> You came to us for reviews and it seems nobody has written one yet. We're going to take a cold shower to wash away the shame. In the meantime, maybe you could write the first review? The fame and fortune are yours for the taking. </p> <a {{bind-attr href=anime.newReviewURL}} class="btn.btn-default"> Write the first review </a> </div> {{/unless}} {{/each}} {{#if canLoadMore}} {{load-more action="loadNextPage"}} {{/if}} </div> </div> </div>
<div class="reviews-index col-sm-6 col-sm-offset-3"> <h1 class="series-title hidden-xs"> {{#link-to 'anime' anime.id}}{{anime.canonicalTitle}}{{/link-to}} <small><i class="fa fa-chevron-right"></i> Reviews</small> </h1> <a {{bind-attr href=newReviewURL}} class="btn btn-primary" style="margin: 3%; width: 94%"> Create a new review </a> <div class="series-reviews col-sm-12"> <div class="review-listing"> {{#each itemController="review"}} {{partial "media/review_summary"}} {{else}} {{#unless canLoadMore}} <div class="trending-review-empty"> <i class="empty-icon fa fa-meh-o"></i> <h4>Well, this is pretty awkward.</h4> <p> You came to us for reviews and it seems nobody has written one yet. We're going to take a cold shower to wash away the shame. In the meantime, maybe you could write the first review? The fame and fortune are yours for the taking. </p> <a {{bind-attr href=anime.newReviewURL}} class="btn.btn-default"> Write the first review </a> </div> {{/unless}} {{/each}} {{#if canLoadMore}} {{load-more action="loadNextPage"}} {{/if}} </div> </div> </div>
Remove extra space before header text.
Remove extra space before header text.
Handlebars
apache-2.0
wlads/hummingbird,MiLk/hummingbird,vevix/hummingbird,jcoady9/hummingbird,astraldragon/hummingbird,paladique/hummingbird,hummingbird-me/hummingbird,jcoady9/hummingbird,vevix/hummingbird,xhocquet/hummingbird,NuckChorris/hummingbird,NuckChorris/hummingbird,cybrox/hummingbird,qgustavor/hummingbird,NuckChorris/hummingbird,paladique/hummingbird,NuckChorris/hummingbird,jcoady9/hummingbird,synthtech/hummingbird,erengy/hummingbird,qgustavor/hummingbird,MiLk/hummingbird,erengy/hummingbird,sidaga/hummingbird,saintsantos/hummingbird,sidaga/hummingbird,xhocquet/hummingbird,astraldragon/hummingbird,erengy/hummingbird,wlads/hummingbird,paladique/hummingbird,paladique/hummingbird,MiLk/hummingbird,jcoady9/hummingbird,wlads/hummingbird,qgustavor/hummingbird,saintsantos/hummingbird,xhocquet/hummingbird,MiLk/hummingbird,hummingbird-me/hummingbird,synthtech/hummingbird,astraldragon/hummingbird,sidaga/hummingbird,vevix/hummingbird,astraldragon/hummingbird,xhocquet/hummingbird,Snitzle/hummingbird,wlads/hummingbird,xhocquet/hummingbird,vevix/hummingbird,xhocquet/hummingbird,qgustavor/hummingbird,saintsantos/hummingbird,xhocquet/hummingbird,Snitzle/hummingbird,Snitzle/hummingbird,sidaga/hummingbird,saintsantos/hummingbird,erengy/hummingbird,Snitzle/hummingbird
28395f121a961b9608e23156847f3164f6950d43
app/templates/components/file-uploader.hbs
app/templates/components/file-uploader.hbs
<label> 1. Upload your preprint </label> {{dropzone-widget url=url options=dropzoneOptions sending=(action 'sending') buildUrl=(action 'getUrl') complete=(action 'complete') preUpload=(action 'preUpload') defaultMessage='Drop preprint file here to upload' maxfilesexceeded=(action 'maxfilesexceeded') }} {{#liquid-if hasFile use='crossFade'}} {{#liquid-bind hasFile use='crossFade'}} <label> 2. Enter preprint title </label> {{validated-input model=this valuePath='nodeTitle' placeholder="Title" value=nodeTitle}} {{/liquid-bind}} {{/liquid-if}} <div class="p-t-xs pull-right"> <button class="btn btn-primary" disabled={{not (and hasFile titleValid)}} {{action 'createProjectAndUploadFile'}}>Next</button> </div>
<label> Upload your preprint </label> {{dropzone-widget url=url options=dropzoneOptions sending=(action 'sending') buildUrl=(action 'getUrl') complete=(action 'complete') preUpload=(action 'preUpload') defaultMessage='Drop preprint file here to upload' maxfilesexceeded=(action 'maxfilesexceeded') }} {{#liquid-if hasFile use='crossFade'}} {{#liquid-bind hasFile use='crossFade'}} <label> Enter preprint title </label> {{validated-input model=this valuePath='nodeTitle' placeholder="Title" value=nodeTitle}} {{/liquid-bind}} {{/liquid-if}} <div class="p-t-xs pull-right"> <button class="btn btn-primary" disabled={{not (and hasFile titleValid)}} {{action 'createProjectAndUploadFile'}}>Next</button> </div>
Remove numbering from upload steps.
Remove numbering from upload steps. This is confusing, because right above it says create a preprint in five steps, but these steps are not steps one and two.
Handlebars
apache-2.0
caneruguz/ember-preprints,hmoco/ember-preprints,CenterForOpenScience/ember-preprints,pattisdr/ember-preprints,hmoco/ember-preprints,baylee-d/ember-preprints,CenterForOpenScience/ember-preprints,laurenrevere/ember-preprints,pattisdr/ember-preprints,laurenrevere/ember-preprints,caneruguz/ember-preprints,baylee-d/ember-preprints
b9197208143a1a0cbc61f68b4561b71754a0379f
addon/templates/components/columns/base.hbs
addon/templates/components/columns/base.hbs
{{#if column.component}} {{component column.component column=column table=table tableActions=tableActions sortIcons=sortIcons}} {{else}} {{label}} {{#if column.sorted}} <span class="lt-sort-icon {{if column.ascending sortIcons.iconAscending sortIcons.iconDescending}}"></span> {{/if}} {{/if}} {{#if isResizable}} {{lt-column-resizer column=column table=table resizeOnDrag=resizeOnDrag isResizing=(mut isResizing) onColumnResized=(action onColumnResized column)}} {{/if}}
{{#if column.component}} {{component column.component column=column table=table tableActions=tableActions sortIcons=sortIcons}} {{else}} {{label}} {{#if column.sorted}} <i class="lt-sort-icon {{if column.ascending sortIcons.iconAscending sortIcons.iconDescending}}"></i> {{/if}} {{/if}} {{#if isResizable}} {{lt-column-resizer column=column table=table resizeOnDrag=resizeOnDrag isResizing=(mut isResizing) onColumnResized=(action onColumnResized column)}} {{/if}}
Change <span> to <i> tag for sorting icons
Change <span> to <i> tag for sorting icons Updated the <span> tag to an <i> tag in order to allow Semantic UI icons to appear. Font Awesome icons work in either and <i> tag or a <span> tag but Semantic UI icons only show up if they are wrapped in an <i> tag.
Handlebars
mit
offirgolan/ember-light-table,offirgolan/ember-light-table
ec54a6b51993bdcaf18343e11add281149a8d44c
app/templates/words/new_word_submeaning.hbs
app/templates/words/new_word_submeaning.hbs
<label> Part of speech {{view "select" content=parentController.posList value=model.pos}} </label> <label> Definition {{validated-textarea value=model.def errors=errors.model.def}} </label> <label class="edit-example"> Example sentence <p>Note: no quotemarks are necessary.</p> {{validated-textarea value=model.example errors=errors.model.example placeholder="No example sentence! Please add one."}} </label> <label> Sources <p>This is a pretty critical part of proposing a new word be added. Please, please checkout the {{#link-to "info.guidelines"}}guidelines{{/link-to}}. We will reject improperly-sourced word submissions!</p> {{validated-textarea value=model.reason errors=errors.model.reason}} </label>
<label> Part of speech {{view "select" content=parentController.posList value=model.pos}} </label> <label> Definition {{validated-textarea value=model.def errors=errors.model.def}} </label> <label class="edit-example"> Example sentence <p>Note: no quotemarks are necessary.</p> {{validated-textarea value=model.example errors=errors.model.example placeholder="No example sentence! Please add one."}} </label> <!-- {{label-selection labels=model.lang.labels selectedLabels=model.labels}} --> <label> Sources <p>This is a pretty critical part of proposing a new word be added. Please, please checkout the {{#link-to "info.guidelines"}}guidelines{{/link-to}}. We will reject improperly-sourced word submissions!</p> {{validated-textarea value=model.reason errors=errors.model.reason}} </label>
Add (commented out) label selection for the new word submeaning
Add (commented out) label selection for the new word submeaning
Handlebars
mit
kaelig/wordset-ui,wordset/wordset-ui,wordset/wordset-ui,wordset/wordset-ui,BryanCode/wordset-ui,BryanCode/wordset-ui,BryanCode/wordset-ui,kaelig/wordset-ui
c6d0e49cdf1722076636a50d893a03d1fdf611c3
static/templates/reaction_popover_content.handlebars
static/templates/reaction_popover_content.handlebars
{{! Contents of the "reaction emoji map" popup }} <div class="reaction-popover"> <div class="reaction-popover-top"> <input class="reaction-popover-filter" type="text" autofocus placeholder={{t 'Search' }} /> <i class="icon-vector-search"></i> </div> <div class="reaction-popover-emoji-map" data-message-id="{{message_id}}"> {{#each emojis}} <div class="reaction-popover-reaction {{#if has_reacted}} reacted {{/if}}" title={{name}}> {{#if is_realm_emoji}} <img src="{{url}}" class="emoji" title= ":{{name}}:" /> {{else}} <div class="emoji emoji-{{css_class}}" title= ":{{name}}:" /> {{/if}} </div> {{/each}} </div> </div>
{{! Contents of the "reaction emoji map" popup }} <div class="reaction-popover"> <div class="reaction-popover-top"> <input class="reaction-popover-filter" type="text" autofocus placeholder={{t 'Search' }} /> <i class="icon-vector-search"></i> </div> <div class="reaction-popover-emoji-map" data-message-id="{{message_id}}"> {{#each emojis}} <div class="reaction-popover-reaction {{#if has_reacted}} reacted {{/if}}" title={{name}} tabindex="0"> {{#if is_realm_emoji}} <img src="{{url}}" class="emoji" title= ":{{name}}:" /> {{else}} <div class="emoji emoji-{{css_class}}" title= ":{{name}}:" /> {{/if}} </div> {{/each}} </div> </div>
Add tabindex to reaction popover content handlebars.
Add tabindex to reaction popover content handlebars.
Handlebars
apache-2.0
synicalsyntax/zulip,eeshangarg/zulip,vaidap/zulip,Galexrt/zulip,andersk/zulip,jphilipsen05/zulip,ryanbackman/zulip,jphilipsen05/zulip,vabs22/zulip,jrowan/zulip,tommyip/zulip,verma-varsha/zulip,Galexrt/zulip,showell/zulip,vaidap/zulip,jrowan/zulip,shubhamdhama/zulip,tommyip/zulip,eeshangarg/zulip,rht/zulip,ryanbackman/zulip,j831/zulip,verma-varsha/zulip,tommyip/zulip,brainwane/zulip,SmartPeople/zulip,jackrzhang/zulip,dhcrzf/zulip,brainwane/zulip,kou/zulip,vabs22/zulip,showell/zulip,christi3k/zulip,rishig/zulip,synicalsyntax/zulip,brainwane/zulip,kou/zulip,mahim97/zulip,andersk/zulip,amanharitsh123/zulip,shubhamdhama/zulip,SmartPeople/zulip,jphilipsen05/zulip,shubhamdhama/zulip,SmartPeople/zulip,jrowan/zulip,amanharitsh123/zulip,christi3k/zulip,jphilipsen05/zulip,timabbott/zulip,tommyip/zulip,jackrzhang/zulip,SmartPeople/zulip,ryanbackman/zulip,tommyip/zulip,shubhamdhama/zulip,amanharitsh123/zulip,shubhamdhama/zulip,eeshangarg/zulip,ryanbackman/zulip,verma-varsha/zulip,rishig/zulip,rishig/zulip,dhcrzf/zulip,amanharitsh123/zulip,vaidap/zulip,rht/zulip,eeshangarg/zulip,dhcrzf/zulip,zulip/zulip,j831/zulip,rishig/zulip,hackerkid/zulip,synicalsyntax/zulip,tommyip/zulip,eeshangarg/zulip,christi3k/zulip,showell/zulip,verma-varsha/zulip,jackrzhang/zulip,jphilipsen05/zulip,vabs22/zulip,kou/zulip,hackerkid/zulip,showell/zulip,j831/zulip,dhcrzf/zulip,dhcrzf/zulip,andersk/zulip,amanharitsh123/zulip,showell/zulip,christi3k/zulip,jackrzhang/zulip,brainwane/zulip,dhcrzf/zulip,jrowan/zulip,punchagan/zulip,Galexrt/zulip,zulip/zulip,amanharitsh123/zulip,christi3k/zulip,eeshangarg/zulip,timabbott/zulip,jackrzhang/zulip,j831/zulip,eeshangarg/zulip,synicalsyntax/zulip,andersk/zulip,SmartPeople/zulip,mahim97/zulip,rishig/zulip,jrowan/zulip,verma-varsha/zulip,jackrzhang/zulip,tommyip/zulip,zulip/zulip,verma-varsha/zulip,j831/zulip,hackerkid/zulip,vabs22/zulip,showell/zulip,zulip/zulip,timabbott/zulip,vabs22/zulip,andersk/zulip,zulip/zulip,mahim97/zulip,showell/zulip,timabbott/zulip,punchagan/zulip,vabs22/zulip,jphilipsen05/zulip,brockwhittaker/zulip,mahim97/zulip,punchagan/zulip,brockwhittaker/zulip,brockwhittaker/zulip,synicalsyntax/zulip,rht/zulip,rht/zulip,rht/zulip,kou/zulip,Galexrt/zulip,zulip/zulip,ryanbackman/zulip,hackerkid/zulip,zulip/zulip,andersk/zulip,punchagan/zulip,kou/zulip,SmartPeople/zulip,mahim97/zulip,brainwane/zulip,vaidap/zulip,rishig/zulip,hackerkid/zulip,punchagan/zulip,jrowan/zulip,hackerkid/zulip,mahim97/zulip,hackerkid/zulip,jackrzhang/zulip,rishig/zulip,brockwhittaker/zulip,timabbott/zulip,shubhamdhama/zulip,punchagan/zulip,Galexrt/zulip,vaidap/zulip,ryanbackman/zulip,synicalsyntax/zulip,timabbott/zulip,andersk/zulip,christi3k/zulip,punchagan/zulip,dhcrzf/zulip,vaidap/zulip,Galexrt/zulip,j831/zulip,brockwhittaker/zulip,kou/zulip,rht/zulip,brockwhittaker/zulip,synicalsyntax/zulip,brainwane/zulip,shubhamdhama/zulip,brainwane/zulip,Galexrt/zulip,timabbott/zulip,rht/zulip,kou/zulip