Commit 5dd12447fa7c13a01e7c43d2ce235dfe746e324c
1 parent
60a3a939fb
Exists in
master
bump Base version in index template and README.md
Showing
2 changed files
with
2 additions
and
2 deletions
Show diff stats
README.md
1 | # The Meteor Chef - Base | 1 | # The Meteor Chef - Base |
2 | A starting point for Meteor apps. | 2 | A starting point for Meteor apps. |
3 | 3 | ||
4 | <table> | 4 | <table> |
5 | <tbody> | 5 | <tbody> |
6 | <tr> | 6 | <tr> |
7 | <th>Base Version</th> | 7 | <th>Base Version</th> |
8 | <td>v3.3.0</td> | 8 | <td>v3.4.0</td> |
9 | </tr> | 9 | </tr> |
10 | <tr> | 10 | <tr> |
11 | <th>Meteor Version</th> | 11 | <th>Meteor Version</th> |
12 | <td>v1.2.1</td> | 12 | <td>v1.2.1</td> |
13 | </tr> | 13 | </tr> |
14 | </tbody> | 14 | </tbody> |
15 | </table> | 15 | </table> |
16 | 16 | ||
17 | [Read the Documentation](http://themeteorchef.com/base) | 17 | [Read the Documentation](http://themeteorchef.com/base) |
18 | 18 |
client/templates/authenticated/index.html
1 | <template name="index"> | 1 | <template name="index"> |
2 | <div class="jumbotron text-center" style="padding: 20px;"> | 2 | <div class="jumbotron text-center" style="padding: 20px;"> |
3 | <h2>Base</h2> | 3 | <h2>Base</h2> |
4 | <p>A starting point for Meteor applications.</p> | 4 | <p>A starting point for Meteor applications.</p> |
5 | <p><a class="btn btn-success" href="http://themeteorchef.com/base" role="button">Read the Documentation</a></p> | 5 | <p><a class="btn btn-success" href="http://themeteorchef.com/base" role="button">Read the Documentation</a></p> |
6 | <p style="font-size: 16px; color: #aaa;">Currently at v3.3.0</p> | 6 | <p style="font-size: 16px; color: #aaa;">Currently at v3.4.0</p> |
7 | </div> | 7 | </div> |
8 | </template> | 8 | </template> |
9 | 9 |