-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
83 lines (82 loc) · 3.65 KB
/
Copy pathindex.html
File metadata and controls
83 lines (82 loc) · 3.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
---
layout: default
title: Geovanni Perez @geoperez
---
<div class="col-xs-6">
<div class="text-center">
<img src="https://avatars2.githubusercontent.com/u/1775792?s=140" alt="Geo Perez" class="img-circle" />
</div>
<p>
My name is <b>Geovanni Perez</b> and this is my web site. I live in Guadalajara, Mexico and
I'm software developer. I love C# and Javascript, and I refuse to code JAVA again. I work at
<a href="http://www.unosquare.com">unosquare</a>. BTW People call me <i>Simio</i>, I know why but
I won't explain it.
</p>
<hr />
<div class="panel panel-default">
<div class="panel-heading">My current projects</div>
<div class="list-group">
<a class="list-group-item" href="https://github.com/geoperez/localcdn">
<strong>localcdn</strong> - A fetch-and-serve local service
</a>
<a class="list-group-item" href="https://github.com/unosquare/tubular">
<strong>Tubular</strong> - AngularJS project
</a>
<a class="list-group-item" href="http://www.tamalesconpasaporte.com/">
<strong>Tamales con Pasaporte</strong> - Personal travel blog
</a>
<a class="list-group-item" href="https://github.com/unosquare/embedio">
<strong>EmbedIO</strong> - A small C# web server
</a>
<a class="list-group-item" href="https://github.com/unosquare/ef-enterpriseextensions">
<strong>EntityFramework Enterprise Extensions</strong> - Creating some extensions like AuditTrail and jobs
</a>
<a class="list-group-item" href="https://github.com/unosquare/generator-tubular">
<strong>Generator Tubular</strong> - Yeoman's Tubular Generator
</a>
<a class="list-group-item" href="https://github.com/geoperez/ghost_tools">
<strong>ghost_tools</strong> - Some handy commands to work with Ghost API
</a>
</div>
</div>
</div>
<div class="col-xs-6">
<div class="panel panel-primary">
<div class="panel-heading">Blog entries</div>
<div class="panel-body">
<div class="list-group">
{% for post in site.posts %}
<a class="list-group-item" href="{{ post.url }}">
<strong>
<i class="fa fa-file-text"></i> {{ post.title }}
</strong> - {{ post.date | date: '%B %d, %Y' }}
</a>
{% endfor %}
</div>
<div class="row">
{% if paginator.previous_page %}
<div class="col-md-4 newer-posts">
<a href="{{ paginator.previous_page_path }}" class="previous">
<i class="fa fa-chevron-left"></i>
<span>Previous page</span>
</a>
</div>
{% endif %}
<div class="col-md-4 page-num">
<span>Page {{ paginator.page }} of {{ paginator.total_pages }}</span>
</div>
{% if paginator.next_page %}
<div class="col-md-4 older-posts">
<a href="{{ paginator.next_page_path }}" class="next">
<span>Next page</span>
<i class="fa fa-chevron-right"></i>
</a>
</div>
{% endif %}
</div>
<p>
I have another blog <a href="http://simiogeek.blogspot.mx/">Simio Geek</a>, more random and more spanish- content.
</p>
</div>
</div>
</div>