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

WIP: Updated Branding #99

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 19 additions & 11 deletions config/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
meaningful values to the rest of the application.
This is done using the module.exports function,
which sets them when require('./thisfile') is run. */

var NAMESPACE = process.env.MAKI_SERVICE_NAMESPACE || 'maki';
var DATABASE = process.env.MAKI_DATABASE_NAME || NAMESPACE;

Expand All @@ -11,24 +11,32 @@ module.exports = {
name: process.env.MAKI_SERVICE_NAME || 'Maki' ,
authority: process.env.MAKI_SERVICE_AUTHORITY || 'localhost:9200' ,
namespace: NAMESPACE ,
mission: process.env.MAKI_SERVICE_MISSION || 'A simple framework for hand-rolling your web application.',
description: process.env.MAKI_SERVICE_DESCRIPTION || 'Maki is an "architecture as a library" project, allowing you to focus on building your project rather than laboring over architecture decisions.',
mission: process.env.MAKI_SERVICE_MISSION || 'A simple framework for quickly building apps.',
description: process.env.MAKI_SERVICE_DESCRIPTION || 'Maki allows you to focus on your project, rather than laboring over architecture decisions. With true isomorphism, you control how your application behaves, and can then customize how your features are exposed on specific platforms.',
source: 'https://github.com/martindale/maki',
points: [
{
header: 'Hand-rolled.',
description: 'No black boxes or arcane scribbling here. Pure Javascript, and direct access to everything.'
header: 'Build Once, Deploy Everywhere',
description: 'Maki can build desktop and <strong>native</strong> mobile apps directly from your web app. All with the same code.',
action: {
text: 'Read the Docs &raquo;',
link: '/docs'
}
},
{
header: 'Get Making.',
description: 'No black boxes or arcane scribbling here. Pure Javascript, and direct access to everything.'
header: 'Self-Documenting',
description: 'Once you\'ve defined your resources, the API builds itself! It works the same way everywhere.',
action: {
text: 'See the API &raquo;',
link: '/api'
}
},
{
header: 'Already registered?',
description: 'Go on then. Get logged in. You\'re _groovy_.',
header: 'Plugin Ecosystem',
description: 'There\'s already <em>tons</em> of plugins for Maki that implement common application functionality.',
action: {
text: 'Log In &raquo;',
link: '/sessions'
text: 'Browse the Plugins &raquo;',
link: '/plugins'
}
}
],
Expand Down
15 changes: 0 additions & 15 deletions views/index.jade
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,3 @@ block content
| !{ markdown( point.description ).replace(/<p>(.*)<\/p>/, '$1') }
if (point.action)
a.ui.bottom.attached.button(href="#{point.action.link}") !{point.action.text}

.ui.stackable.three.column.grid
.column
h3 Resources
.ui.list
each resource in resources
if (!resource.internal)
a.item(href="#{resource.routes.query}") #{resource.plural}

.column
h3 Services

.ui.list
each service in services
a.item(href="#{service.protocol}://#{service.authority}") #{service.name}
4 changes: 3 additions & 1 deletion views/layouts/default.jade
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,7 @@ html.no-js

.row
.ui.one.column.stackable.center.aligned
small <a href="http://github.com/martindale/maki">Made</a> with care by <a href="http://www.ericmartindale.com/">Eric Martindale</a>.
p
small Built with <a href="http://github.com/martindale/maki">Maki</a>.

block scripts
2 changes: 1 addition & 1 deletion views/partials/navbar.jade
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
block mainMenu
.right.menu
a.item.tooltipped(class="btn btn-default", href="bitcoin:1EBdAcEhP4Qn7sihJoCqinLC8A14zqHJ7R", title="If you have a bitcoin wallet installed and configured, this will launch it.")
i.icon.bitcoin(alt="Bitoin", title="Donate Bitcoin")
i.icon.bitcoin(alt="Bitcoin", title="Donate Bitcoin")
| Donate &raquo;
if (user)
a.item(href="/people/#{user.slug}") #{user.username}
Expand Down