mirror of
https://github.com/lukevella/rallly.git
synced 2025-08-03 08:28:35 +02:00
Updated about page
This commit is contained in:
parent
526e9c36ee
commit
d494d945e2
7 changed files with 44 additions and 12 deletions
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1,4 +1,4 @@
|
|||
angular.module("rallly").run(["$templateCache", function($templateCache) {$templateCache.put("templates/about.html","<div style=\"max-width:600px\">\n <h1>What is Rallly?</h1>\n <div class=\"rl-page-desc\">Rallly is a collaborative scheduling service that makes deciding on a date fast and easy.</div>\n <h2>Hi, I\'m Luke!</h2>\n <p>\n I created Rallly as side project to help me learn some new technologies. I decided to publish it because I thought other people might find it useful. Rallly is a completely free service. In fact it is even open source. You can look at the latest source code on Github.\n </p>\n</div>\n");
|
||||
angular.module("rallly").run(["$templateCache", function($templateCache) {$templateCache.put("templates/about.html","<div class=\"box\">\n <div class=\"box-title\">Frequently Asked Questions</div>\n <div class=\"box-description\">\n Want to find out more about Rallly? Check out the FAQs below.\n </div> <h2>What is Rallly?</h2>\n <p>\n Rallly is a collaborative scheduling service that makes deciding on a date fast and easy. In other words, Rallly helps you and your friends decide on a date to host an event.\n </p>\n <h2>Why is it called Rallly?</h2>\n <p>\n The name is derived from the proper spelling of the word, “rally”. The Webster dictionary defines rally as, “to muster for a common purpose” which accurately describes the goal of this service. The inproper spelling can be attributed to the difficulty of finding short and meaningful domain names.\n </p>\n <h2>Who made this?</h2>\n <p>\n Rallly was created by <a href=\"http://lukevella.com\">Luke Vella</a>.\n </p>\n</div>\n");
|
||||
$templateCache.put("templates/confirmmodal.html","<div class=\"rl-modal-overlay\" ng-click=\"modal.cancel()\"></div>\n\n<div class=\"rl-modal\">\n <div class=\"rl-modal-title\">{{modal.title}}</div>\n <div class=\"rl-modal-message\">\n {{modal.message}}\n </div>\n <div class=\"rl-modal-actions\">\n <button type=\"button\" ng-click=\"modal.confirm()\" ng-show=\"modal.confirm\" class=\"btn\" ng-class=\"{danger : modal.isDestructive}\">{{modal.confirmText}}</button>\n <button type=\"button\" ng-click=\"modal.cancel()\" class=\"btn\">{{modal.cancelText}}</button>\n </div>\n</div>\n");
|
||||
$templateCache.put("templates/editevent.html","<div ng-show=\"event._id\">\n <div class=\"box\">\n\n <div class=\"box-title\">Edit Event</div>\n <div class=\"box-description\">\n You can makes changes to your existing event by changing the fields in the form below.\n </div>\n\n <form novalidate name=\"form\" ng-submit=\"submit()\">\n\n <section class=\"box-section\" user-form form=\"form\" event=\"event\">\n\n </section>\n\n <section class=\"box-section\" event-form form=\"form\" event=\"event\">\n\n </section>\n <section class=\"box-section\" date-form form=\"form\" event=\"event\">\n\n </section>\n\n <section class=\"box-section\" settings-form form=\"form\" event=\"event\">\n\n </section>\n\n <div class=\"box-controls box-bottom-sticky\">\n <button type=\"submit\" ng-show=\"didChange()\" class=\"btn btn-primary\" ng-class=\"{disabled : !didChange()}\">\n Save Changes\n </button>\n <button type=\"button\" ng-click=\"undoChanges()\" class=\"btn\" ng-show=\"didChange()\">Undo Changes</button>\n <a href=\"/{{event._id}}\" class=\"btn\" ng-hide=\"didChange()\">Done</a>\n </div>\n\n </form>\n\n </div>\n\n</div>\n");
|
||||
$templateCache.put("templates/event.html","<div ng-show=\"event._id && !event.isDeleted\">\n <div class=\"box \">\n <div class=\"event-header\">\n <div class=\"details\">\n <div class=\"title\">\n {{event.title}}\n <span class=\"title-label danger\" ng-show=\"event.isClosed\">Poll Closed</span>\n <span class=\"title-label success\" ng-hide=\"event.isClosed\">Poll Open</span>\n </div>\n <div class=\"subtitle\">\n Created by <a href=\"mailto:{{event.creator.email}}\">{{event.creator.name}}</a> • {{event.created | elapsed}}\n </div>\n </div>\n <div class=\"actions\">\n <button class=\"btn\" ng-click=\"editEvent()\">Edit Event</button>\n </div>\n </div>\n <div class=\"event-description box-side-sticky\" ng-if=\"event.description\">{{event.description}}</div>\n <div class=\"event-location\" ng-if=\"event.location\">\n Location:\n <a href=\"http://maps.google.com?q={{event.location}}\" target=\"_blank\">{{event.location}}</a>\n </div>\n\n <div poll event=\"event\" class=\"poll\">\n </div>\n </div>\n\n <div class=\"box\" ng-hide=\"event.comments.length == 0 && event.isClosed\">\n <div class=\"box-title\">\n Discussion\n </div>\n <div class=\"box-description\">\n You can discuss the event with your friends by leaving a comment below.\n </div>\n <div discussion event=\"event\">\n\n </div>\n </div>\n</div>\n");
|
||||
|
|
|
@ -23,6 +23,29 @@ $box-h-pad: 25px;
|
|||
border-color: $blue-clr;
|
||||
box-shadow: 0 0 3px rgba($blue-clr, 0.5);
|
||||
}
|
||||
h1, h2, h3, h4 {
|
||||
margin:0 0 10px 0;
|
||||
}
|
||||
h1 {
|
||||
font-size: 24px;
|
||||
margin-bottom:20px;
|
||||
}
|
||||
h2 {
|
||||
font-size: 16px;
|
||||
font-weight: bold;
|
||||
}
|
||||
p {
|
||||
margin: 0 0 20px 0;
|
||||
color: lighten($text-clr,20%);
|
||||
line-height: 1.5em;
|
||||
font-size: em(14px);
|
||||
a {
|
||||
text-decoration:none;
|
||||
&:hover{
|
||||
text-decoration:underline;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.box-title {
|
||||
|
|
|
@ -1,8 +1,17 @@
|
|||
<div style="max-width:600px">
|
||||
<h1>What is Rallly?</h1>
|
||||
<div class="rl-page-desc">Rallly is a collaborative scheduling service that makes deciding on a date fast and easy.</div>
|
||||
<h2>Hi, I'm Luke!</h2>
|
||||
<div class="box">
|
||||
<div class="box-title">Frequently Asked Questions</div>
|
||||
<div class="box-description">
|
||||
Want to find out more about Rallly? Check out the FAQs below.
|
||||
</div> <h2>What is Rallly?</h2>
|
||||
<p>
|
||||
I created Rallly as side project to help me learn some new technologies. I decided to publish it because I thought other people might find it useful. Rallly is a completely free service. In fact it is even open source. You can look at the latest source code on Github.
|
||||
Rallly is a collaborative scheduling service that makes deciding on a date fast and easy. In other words, Rallly helps you and your friends decide on a date to host an event.
|
||||
</p>
|
||||
<h2>Why is it called Rallly?</h2>
|
||||
<p>
|
||||
The name is derived from the proper spelling of the word, “rally”. The Webster dictionary defines rally as, “to muster for a common purpose” which accurately describes the goal of this service. The inproper spelling can be attributed to the difficulty of finding short and meaningful domain names.
|
||||
</p>
|
||||
<h2>Who made this?</h2>
|
||||
<p>
|
||||
Rallly was created by <a href="http://lukevella.com">Luke Vella</a>.
|
||||
</p>
|
||||
</div>
|
||||
|
|
|
@ -56,7 +56,7 @@
|
|||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/contact" ng-class="{active : isActive('/contact')}">
|
||||
<a href="mailto:me@lukevella.com">
|
||||
<i back-img="contact" class="icon"></i>
|
||||
<span class="text">Contact</span>
|
||||
</a>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue