Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes #1865 : Adds the about us section #1868

Merged
merged 1 commit into from Jan 15, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions frontend/app/router.js
Expand Up @@ -47,6 +47,7 @@ router.map(function() {
});
this.route('sitemap');
this.route('faq');
this.route('about');
this.route('settings');
});

Expand Down
8 changes: 8 additions & 0 deletions frontend/app/routes/about.js
@@ -0,0 +1,8 @@
import Route from '@ember/routing/route';
import ENV from '../config/environment';

export default Route.extend({
model() {
return ENV.badgeyaySupportMail;
}
});
29 changes: 29 additions & 0 deletions frontend/app/templates/about.hbs
@@ -0,0 +1,29 @@
<div class="ui grid">
<div class="eight wide column" style="text-align:justified">
<h1 style="text-align:Justified">About Us</h1>
<p>Badgeyay is a Badge generator with a simple web UI to add data and generate printable badges in a PDF.

The user can:
<ul>
<li>Choose the size of the badges</li>
<li>Choose the background of the badges and upload the logo and the background image</li>
<li>Upload a CSV file or manually enter CSV data as: name, type of attendee, designation, nick/handle,
organization/project</li>
</ul>
</p>
<h1 style="text-align:Justified">About Fossasia</h1>
<div>
<p>FOSSASIA is an organization developing software applications for social change using a wide-range of
technologies. It was established 2009. Projects range from Free and Open Source software, to design,
graphics and hardware. We also organize and participate in conferences, meetups and code camps. The
annual FOSSASIA OpenTechSummit is one of the largest gatherings of developers in Asia and took place in
Vietnam, Cambodia and Singapore. Please join us and start contributing to our projects on <a src="https://github.com/fossasia">Github</a>.</p>
</div>
</div>
<div class="eight wide column">
<img src="https://github.com/fossasia/badgeyay/raw/development/api/docs/installation/demo.gif">
</div>
<div class="sixteen wide column">
You may reach out to us at <a href="mailto:{{model}}">{{model}}</a>
</div>
</div>
3 changes: 3 additions & 0 deletions frontend/app/templates/components/footer-main.hbs
Expand Up @@ -7,6 +7,9 @@
{{#link-to 'faq' class='item'}}
{{init-cap 'faq'}}
{{/link-to}}
{{#link-to 'about' class='item'}}
{{init-cap 'About Us'}}
{{/link-to}}
</div>
<div class="right menu">
<strong class="item">Follow us on</strong>
Expand Down
3 changes: 2 additions & 1 deletion frontend/config/environment.js
Expand Up @@ -14,7 +14,8 @@ module.exports = function(environment) {
storageBucket : 'badgeyay-195bf.appspot.com',
messagingSenderId : '1033576063262'
},
'ember-cli-notifications': {
badgeyaySupportMail : 'badgeyayofficial@gmail.com',
'ember-cli-notifications' : {
includeFontAwesome: true
},
torii: {
Expand Down