parsley/app/javascript/components/TheAboutPage.vue

31 lines
790 B
Vue
Raw Normal View History

2018-03-30 14:31:09 -05:00
<template>
2018-04-01 22:32:13 -05:00
<div class="content">
<h1 class="title">About</h1>
2018-03-30 14:31:09 -05:00
2018-04-01 22:32:13 -05:00
<p>
2020-08-07 12:33:06 -05:00
A Recipe manager. Source available at <a href="https://source.elbert.us/dan/parsley">https://source.elbert.us</a>.
2018-04-01 22:32:13 -05:00
</p>
<p>
2020-08-07 12:33:06 -05:00
Parsley is released under the MIT License. All code &copy; Dan Elbert 2020.
2018-04-01 22:32:13 -05:00
</p>
<p>
Food data provided by:<br/>
<cite>
US Department of Agriculture, Agricultural Research Service, Nutrient Data Laboratory. USDA National Nutrient Database for Standard Reference, Release 28. Version Current: September 2015. Internet: <a href="http://www.ars.usda.gov/nea/bhnrc/ndl">http://www.ars.usda.gov/nea/bhnrc/ndl</a>
</cite>
</p>
</div>
2018-03-30 14:31:09 -05:00
</template>
<script>
export default {
}
</script>
<style lang="scss" scoped>
</style>