5bba499251
- All non-modals no longer reference Bootstrap or Font Awesome (#20) - Removed "full request" button from journal page (#16) - Added role attributes in many places
23 lines
807 B
Vue
23 lines
807 B
Vue
<template lang="pug">
|
|
article.mpj-main-content(role='main')
|
|
page-title(title='Welcome!'
|
|
hideOnPage='true')
|
|
p
|
|
p.
|
|
myPrayerJournal is a place where individuals can record their prayer requests, record that they prayed for them,
|
|
update them as God moves in the situation, and record a final answer received on that request. It will also allow
|
|
individuals to review their answered prayers.
|
|
p.
|
|
This site is currently in beta, but it is open and available to the general public. To get started, simply click
|
|
the “Log On” link above, and log on with either a Microsoft or Google account. You can also learn more
|
|
about the site at the “Docs” link, also above.
|
|
</template>
|
|
|
|
<script>
|
|
'use strict'
|
|
|
|
export default {
|
|
name: 'home'
|
|
}
|
|
</script>
|