Added telegram button to homepage

This commit is contained in:
Felipe Martín 2016-03-06 14:27:48 +01:00
parent f10d3ae94f
commit b7b01df9f0
3 changed files with 30 additions and 19 deletions

View File

@ -77,6 +77,14 @@ section.content
&:hover
background-color: darken($email-color, 12%)
&.telegram
background-color: $telegram-color
color: $telegram-text-color
box-shadow: 0 0 1px $telegram-color
&:hover
background-color: darken($telegram-color, 12%)
&.twitter
background-color: $twitter-color
color: $twitter-text-color
@ -100,4 +108,3 @@ section.content
&:hover
background-color: darken($linkedin-color, 12%)

View File

@ -32,6 +32,9 @@ $twitter-text-color: #fff
$email-color: #db4437
$email-text-color: #e7e6dd
$telegram-color: #0088cc
$telegram-text-color: white
$github-color: #999
$github-text-color: #000

View File

@ -3,23 +3,24 @@
{% block menu %}{% endblock %}
{% block content %}
<div class="papers">
<div class="picture pull-right hide-mobile">
<img src="http://cdn.fmartingr.com/avatar.png" width="200" />
</div>
<p>Hi! I'm Felipe, and I am a developer.</p>
<p>I have been playing with code for a while now, but I also enjoy geeking around with computers, algorithms and other stuff; the less I know about it, the better! Learning new things every day is my way of life.</p>
<p>I think that developers are like artists, writers and composers... we all make art. But we don't use strokes and colors, words or notes, we make it through code. And I really love it.</p>
<p>If you want to get in touch, feel free to drop me a line.</p>
<div class="social">
<a href="//es.linkedin.com/in/felipemartingarcia" class="button linkedin"><span class="fa fa-linkedin"></span></a>
<a href="//twitter.com/fmartingr" class="button twitter"><span class="fa fa-twitter"></span></a>
<a href="//github.com/fmartingr" class="button github"><span class="fa fa-github"></span></a>
<a href="mailto:me@fmartingr.com" class="button email"><span class="fa fa-envelope"></span></a>
</div>
<div class="papers">
<div class="picture pull-right hide-mobile">
<img src="http://cdn.fmartingr.com/avatar.png" width="200" />
</div>
<p>Hi! I'm Felipe, and I am a developer. Whatever that is.</p>
<p>I have been playing with code for a while now, but I also enjoy geeking around with computers, algorithms and other stuff; the less I know about it, the better! Learning new things every day is my way of life.</p>
<p>I think that developers are like artists, writers and composers... we all make art. But we don't use strokes and colors, words or notes, we make it through code. And I really love it.</p>
<p>If you want to get in touch, feel free to drop me a line.</p>
<div class="social">
<a href="//es.linkedin.com/in/felipemartingarcia" class="button linkedin"><span class="fa fa-linkedin"></span></a>
<a href="https://telegram.me/fmartingr" class="button telegram"><span class="fa fa-paper-plane"></span></a>
<a href="//twitter.com/fmartingr" class="button twitter"><span class="fa fa-twitter"></span></a>
<a href="//github.com/fmartingr" class="button github"><span class="fa fa-github"></span></a>
<a href="mailto:me@fmartingr.com" class="button email"><span class="fa fa-envelope"></span></a>
</div>
</div>
{% endblock %}