Remove coreId from device listing; Add jumbotron banner

This commit is contained in:
jkaplon 2015-07-09 10:44:58 -04:00
parent 0c2c59a2a8
commit c1f092f5d1
3 changed files with 11 additions and 6 deletions

View File

@ -1,7 +1,7 @@
{{!< default}} {{!< default}}
{{! Grab 1st coreName value (it will be same value for entire set).}} {{! Grab 1st coreName value (it will be same value for entire set).}}
<h1>Alerts from Particle Core: {{alerts.0.coreName}} </h1> <h2>Alerts from Particle Core: {{alerts.0.coreName}} </h2>
<table class="table table-striped"> <table class="table table-striped">
<thead> <thead>

View File

@ -11,13 +11,14 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<!-- Optional theme --> <!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css"> <!-- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css"> -->
</head> </head>
<body class="container-fluid"> <body class="container-fluid">
<div style="background:#D1E0E0" class="jumbotron">
<h1 class="text-center">Patrick's Device Dashboard</h1>
</div>
{{! Everything else gets inserted here }} {{! Everything else gets inserted here }}
{{{body}}} {{{body}}}

View File

@ -5,7 +5,11 @@
{{#each cores}} {{#each cores}}
<li> <li>
<a href="https://particle.kaplon.us/core/{{this.coreId}}"> <a href="https://particle.kaplon.us/core/{{this.coreId}}">
{{this.coreName}} ({{this.coreId}}), {{this.locationDesc}} {{#if this.coreName}}
{{this.coreName}}, {{this.locationDesc}}
{{else}}
{{this.coreId}}, {{this.locationDesc}}
{{/if}}
</a> </a>
</li> </li>
{{/each}} {{/each}}