Skip to content

Commit

Permalink
Merge pull request #148 from sergiocarracedo/source
Browse files Browse the repository at this point in the history
Remove jsvigo
  • Loading branch information
sergiocarracedo authored Nov 30, 2022
2 parents 9277201 + c0e076f commit ad4f2c3
Show file tree
Hide file tree
Showing 7 changed files with 2,611 additions and 2,650 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

``` bash
# install dependencies
$ yarn install
$ yarn

# rename .env.example to .env and edit using your own config

Expand Down
3 changes: 1 addition & 2 deletions components/VigotechMember.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@
<div class="logo-wrapper">
<div class="logo-content">
<img
src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==
"
src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="
class="square-bg"
>
<img
Expand Down
18 changes: 12 additions & 6 deletions components/VigotechNextEvent.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div class="vigotech-next-event">
<article class="vigotech-next-event">
<h4>
<i class="fa fa-calendar" />
<span v-if="nextEventsGroups.length == 1">Vindeiro evento</span>
Expand All @@ -25,14 +25,20 @@
<a :href="nextEventGroup.nextEvent.url">
<h6>{{ nextEventGroup.name }}</h6>
<h5>{{ nextEventGroup.nextEvent.title }}</h5>
<strong>{{ eventDate(nextEventGroup.nextEvent.date) }}</strong>
<span class="btn">
Máis info
</span>
<footer>
<strong>{{ eventDate(nextEventGroup.nextEvent.date) }}</strong>
<span class="btn">
Máis info
</span>
</footer>

<h6 v-if="nextEventGroup.nextEvent.location" class="vigotech-next-event__location">
<i class="fa fa-map-pin"></i> {{ nextEventGroup.nextEvent.location }}
</h6>
</a>
</div>
</div>
</div>
</article>
</template>

<script>
Expand Down
2 changes: 1 addition & 1 deletion components/VigotechNextEventTip.vue
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
},
computed: {
fullTitle () {
return `${this.nextEvent.title}\n${moment(this.nextEvent.date).format('dddd, D MMMM YYYY HH:mm')}`
return `${this.nextEvent.title}\n${moment(this.nextEvent.date).format('dddd, D MMMM YYYY HH:mm')}${this.nextEvent.location ? `\n${this.nextEvent.location}`: ''}`
}
}
}
Expand Down
8 changes: 6 additions & 2 deletions static/vigotech-events-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,19 @@
"properties": {
"title": {
"type": "string",
"description": "Eventname"
"description": "Event name"
},
"date": {
"type": "numeric",
"type": "number",
"description": "Unix timestamp event datetime"
},
"url": {
"type": "string",
"description": "Event URL"
},
"location": {
"type": "string",
"description": "Where the event will take place"
}
}
}
19 changes: 0 additions & 19 deletions static/vigotech.json
Original file line number Diff line number Diff line change
Expand Up @@ -125,25 +125,6 @@
"facebook": "https://www.facebook.com/JoomlaVigo/"
}
},
"jsvigo": {
"name": "JavascriptVigo",
"logo": "https://vigotech.org/images/jsvigo.png",
"links": {
"meetup": "https://www.meetup.com/es-ES/JavaScriptVigo/",
"twitter": "http://twitter.com/JavaScriptVigo/",
"youtube": "https://www.youtube.com/channel/UCjFplxtEs0XtunTn-n0LUtQ"
},
"events": {
"type": "meetup",
"meetupid": "JavaScriptVigo"
},
"videos": [
{
"type": "youtube",
"channel_id": "UCjFplxtEs0XtunTn-n0LUtQ"
}
]
},
"phpvigo": {
"name": "PHPVigo",
"logo": "https://vigotech.org/images/php_vigo.jpg",
Expand Down
Loading

0 comments on commit ad4f2c3

Please sign in to comment.