Skip to content

Commit

Permalink
Update website
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanOM committed Jan 14, 2021
1 parent f582eb3 commit d175818
Show file tree
Hide file tree
Showing 4 changed files with 86 additions and 9 deletions.
3 changes: 2 additions & 1 deletion layouts/default.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,14 @@
</section>
<nuxt/>
</div>
<!-- Disable Newsletter signup
<div class="box cta">
<p class="has-text-centered">
<a href="http://eepurl.com/dwNlR1" target="_blank" rel="noreferrer">
<span class="tag is-primary">Newsletter</span> If you want to receive an email about new articles or updates, click here to subscribe.
</a>
</p>
</div>
</div>-->
<blog-footer></blog-footer>
</div>
</template>
Expand Down
8 changes: 3 additions & 5 deletions pages/about.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,18 @@
</div>
<div class="column is-half is-offset-one-quarter has-text-justified">
<p>
My name is Ryan O'Mullan and I'm an Irish web developer who currently lives in São Paulo. I like to build things using technology such as Python, Javascript and AWS.
My name is Ryan O'Mullan and I'm an Irish Software Engineer who works remotely. I like to build things using technology such as Python, Javascript and cloud solutions.
<br>
<br>
You can checkout some of the things I have worked on <a href="https://github.com/ryanom" target="_blank" rel="noreferrer">my Github account</a> or at my other website:
<a href="http://ryan.omullan.com" target="_blank" rel="noreferrer">http://ryan.omullan.com</a>.
You can checkout some of the things I have worked on <a href="https://github.com/ryanom" target="_blank" rel="noreferrer">my Github account</a> or <a href="https://www.linkedin.com/in/ryanomullan/" target="_blank" rel="noreferrer">connect with me on Linkedin.</a>
</p>
</div>
</div>
<div class="column is-offset-2 is-8"><hr></div>
<div class="container has-text-centered" style="padding-top: 30px">
<h1 class="title">Current Projects</h1>
<h1 class="title">Side Projects</h1>
<div class="column is-half is-offset-one-quarter has-text-justified">
<p><a href="https://sudojobs.io/" target="_blank" rel="noreferrer">SudoJobs</a> - A job platform focused on IT jobs that favors transparency in the offers.</p>
<p><a href="http://golingo.com.br" target="_blank" rel="noreferrer">Golingo</a> - A platform to help people find their next native language teacher.</p>
<p><a href="https://futebolbrazil.com/" target="_blank" rel="noreferrer">Futebol Brazil</a> - An English language Brazilian football blog from people living in Brazil. From Brasileiro to Copa Libertadores. Match reports, interviews and more!</p>

</div>
Expand Down
3 changes: 0 additions & 3 deletions pages/contact.vue
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,6 @@
<h3 class="title is-5">
<span class="icon" style="color: #0084b4;"><i class="fa fa-twitter"></i></span> &nbsp;<a href="https://twitter.com/ryanomullan" target="_blank" rel="noreferrer">twitter.com/ryanomullan</a>
</h3>
<h3 class="title is-5">
<span class="icon" style="color: dimgrey"><i class="fa fa-link"></i></span> &nbsp;<a href="http://ryan.omullan.com" target="_blank" rel="noreferrer">ryan.omullan.com</a>
</h3>
<h3 class="title is-5">
<span class="icon" style="color: lightslategrey"><i class="fa fa-envelope"></i></span> &nbsp;<a href="mailto:[email protected]" target="_blank" rel="noreferrer">[email protected]</a>
</h3>
Expand Down
81 changes: 81 additions & 0 deletions pages/tags/_slug.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
<template>
<section class="section">
<div class="container">
<div class="columns">
<div class="column is-offset-2 is-8">
<h1 class="title is-2">Posts with tag: {{twwtw}}</h1>
<hr>

<div class="columns is-multiline">
<postBox v-for="post in posts" :key="post.fields.slug" v-bind:post="post"></postBox>
</div>

</div>
</div>
</div>
</section>
</template>


<script>
import client from '~/plugins/contentful';
export default {
asyncData({params, error, payload}) {
return client
.getEntries({
content_type: 'post',
order: '-sys.createdAt',
//'fields.tags.fields.name[ne]': 'deeploy'
'fields.tags[ne]': params.slug
})
.then(entries => {
return {
posts: entries.items,
twwtw: params.slug
};
})
.catch(e => console.log(e));
},
head: {
title: 'Latest Posts - Ryan\'s Blog',
meta: [
{
hid: `description`,
name: 'description',
content: 'Check out all of our latest posts'
},
{
hid: `keywords`,
name: 'keywords',
keywords: 'Latest Posts - Ryan\'s Blog'
},
{
hid: `og:title`,
property: 'og:title',
content: `Latest Posts - Ryan's Blog'`
},
{
hid: `og:url`,
property: 'og:url',
content: 'https://ryanomullan.com'
},
{
hid: `og:image`,
property: 'og:image',
content: 'https://pbs.twimg.com/profile_banners/2400039026/1527443496/1500x500'
},
{
hid: `og:description`,
property: 'og:description',
content: 'Check out all of our latest posts'
}
]
},
};
</script>

<style scoped>
</style>

0 comments on commit d175818

Please sign in to comment.