Skip to content
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
3 changes: 2 additions & 1 deletion assets/scss/materialize.scss
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
@import '@/node_modules/materialize-css/sass/materialize.scss';
@import '@/node_modules/materialize-css/sass/materialize.scss';

14 changes: 7 additions & 7 deletions layouts/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# LAYOUTS

**This directory is not required, you can delete it if you don't want to use it.**

This directory contains your Application Layouts.

More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/views#layouts).
# LAYOUTS
**This directory is not required, you can delete it if you don't want to use it.**
This directory contains your Application Layouts.
More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/views#layouts).
38 changes: 19 additions & 19 deletions layouts/default.vue
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
<template>
<div>
<Header />
<nuxt />
</div>
</template>

<script>
import Header from '~/components/Header'

export default {
components: {
Header
}
}
</script>

<style>
</style>
<template>
<div>
<Header />
<nuxt />
</div>
</template>
<script>
import Header from '~/components/Header'
export default {
components: {
Header
}
}
</script>
<style lang='scss'>
</style>
107 changes: 102 additions & 5 deletions pages/committee/index.vue
Original file line number Diff line number Diff line change
@@ -1,14 +1,111 @@
<template>
<div>
Committee Page
</div>
<div><br>
<div class="center-align"><h4>Our Committee Members</h4></div><br><br>
<div class="row">
<section v-for=' c in content.committee' :key=' c.designation'>
<div class='col s12 m7 l3'>
<div class='card-panel hoverable'>
<p class="center-align text">{{c.designation}}</p>
<div class='card-image center-align'>
<img class="circle responsive-image img" :src='c.url'>
</div>
<div class='card-content center-align text'>
<p>{{ c.name }}</p>
</div><br><br>
<div class='card-action middle'>
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"/>&nbsp;
<a :href='c.profiles.instagram' class="wave-effect wave-light"><i class="fa fa-instagram hoverable circle"></i></a>&nbsp;
<a :href='c.profiles.twitter' class="wave-effect wave-light"><i class="fa fa-twitter hoverable circle"></i></a>&nbsp;
<a :href='c.profiles.linkedin' class="wave-effect wave-light"><i class="fa fa-linkedin hoverable circle"></i></a>&nbsp;
<a :href='c.profiles.github' class="wave-effect wave-light"><i class="fa fa-github hoverable circle"></i></a>&nbsp;
<a :href='c.profiles.website' class="wave-effect wave-light"><i class="material-icons action hoverable circle">language</i></a>
</div>
</div>
</div>
</section>
</div>
</div>
</template>

<script>
export default {

data () {
return {
content: {
committee: [
{
name: 'Prof. Syam Sankar',
designation: 'Faculty Advisor',
url: '/profilepic.png',
profiles: {
instagram: '',
twitter: '',
linkedin: '',
github: '',
website: ''
}
},
{
name: 'Milind Soorya ',
designation: ' Chairman',
url: '/profilepic.png',
profiles: {
instagram: '',
twitter: '',
linkedin: '',
github: '',
website: ''
}
},
{
name: 'Meekha E Saji ',
url: '/profilepic.png',
designation: ' Newsletter Editor',
profiles: {
instagram: '',
twitter: '',
linkedin: '',
github: '',
website: ''
}
},
{
name: 'Allen K Abraham',
url: '/profilepic.png',
designation: ' Website Maintainer',
profiles: {
instagram: '',
twitter: '',
linkedin: '',
github: '',
website: ''
}
}
]
}
}
}
}
</script>
<style lang="scss">
.card-panel{
border-radius: 16px 16px 16px 16px;
box-shadow: 0 4px 4px grey;
height: 400px;
}
.text{
text-align: center;
font-weight: bold;
font-size: 16px;
}

<style>
.img{
width: 140px;
height: 140px;
}
.middle{
position: absolute;
font-size: 28px;
overflow: hidden;
}
</style>
2 changes: 1 addition & 1 deletion pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<div>
Home Page
</div>
</div>
</div>
</template>

<script>
Expand Down
Binary file added static/profilepic.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.