2018-10-30 12:55:49 +00:00
|
|
|
<template>
|
|
|
|
<section class='top-section'>
|
|
|
|
<div class='container'>
|
|
|
|
<div class='text-center'>
|
|
|
|
<!-- <img class="main-illustration" src='/assets/erpnext_com/img/erpnext_com_illustration.png'
|
|
|
|
style='width: 700px;'> -->
|
|
|
|
</div>
|
|
|
|
<h1 v-html="title"></h1>
|
|
|
|
<ul class="list-group">
|
|
|
|
</ul>
|
|
|
|
<p class='lead' v-html="description"></p>
|
|
|
|
<p class="mt-4">
|
|
|
|
<a class="btn btn-primary btn-lg" href="/enroll">Explore Courses</a>
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
2018-11-01 11:49:21 +00:00
|
|
|
props: ['title', 'description'],
|
2018-10-30 12:55:49 +00:00
|
|
|
name: "AcademyTopSection",
|
|
|
|
};
|
|
|
|
</script>
|