mirror of
https://github.com/resume/resume.github.com.git
synced 2025-12-30 23:59:40 -06:00
hCard support
This commit is contained in:
@@ -41,7 +41,6 @@ a:hover { text-decoration: none; }
|
||||
strong { font-weight: bold; }
|
||||
li { line-height: 24px; border-bottom: 1px solid #ccc; }
|
||||
p.enlarge { font-size: 144%; padding-right: 6.5em; line-height: 24px; }
|
||||
p.enlarge span { color: #000 }
|
||||
.contact-info { margin-top: 7px; text-align: right; font-size: 12px; position: relative; float: left; width: 100%;}
|
||||
.contact-info a { position :relative; float: left; width: 100%;}
|
||||
.contact-info img {float: right; border: 1px solid #ccc; width: 150px; height: 150px; margin: -24px 0 14px;}
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
<div id="doc2" class="yui-t7">
|
||||
<div id="inner">
|
||||
<div id="inner" class="vcard">
|
||||
|
||||
<div id="hd">
|
||||
<div class="yui-gc">
|
||||
<div class="yui-u first">
|
||||
<hgroup>
|
||||
<h1>{{name}}</h1>
|
||||
<h1 class="fn">{{name}}</h1>
|
||||
<h2>Passionate github user</h2>
|
||||
</hgroup>
|
||||
</div>
|
||||
@@ -13,9 +13,9 @@
|
||||
<div class="yui-u">
|
||||
<div class="contact-info">
|
||||
{{#gravatar_id}}
|
||||
<img src="https://secure.gravatar.com/avatar/{{gravatar_id}}?s=140&d=https://github.com/images/gravatars/gravatar-140.png" alt=""/>
|
||||
<img src="https://secure.gravatar.com/avatar/{{gravatar_id}}?s=140&d=https://github.com/images/gravatars/gravatar-140.png" alt="" class="photo" />
|
||||
{{/gravatar_id}}
|
||||
<h3><a href="mailto:{{email}}">{{email}}</a></h3>
|
||||
<h3><a href="mailto:{{email}}" class="email">{{email}}</a></h3>
|
||||
</div><!--// .contact-info -->
|
||||
</div>
|
||||
</div><!--// .yui-gc -->
|
||||
@@ -33,12 +33,12 @@
|
||||
<p class="enlarge">
|
||||
I'm a developer
|
||||
{{#location}}
|
||||
based in {{location}}
|
||||
based in <span class="adr locality">{{location}}</span>
|
||||
{{/location}}
|
||||
with <a href="https://github.com/{{{username}}}">{{repos}} public {{plural}}</a>.
|
||||
I've been using github.com since {{since}}
|
||||
{{#blog}}
|
||||
and sometimes I blog at <a href="" id="myblog" title="my blog">{{blog}}</a>.
|
||||
and sometimes I blog at <a href="" id="myblog" title="my blog" class="url">{{blog}}</a>.
|
||||
{{/blog}}
|
||||
</p>
|
||||
<p id="languages" class="enlarge"></p>
|
||||
@@ -90,7 +90,7 @@
|
||||
</div><!--// bd -->
|
||||
|
||||
<div id="ft">
|
||||
<p>{{name}} — <a href="mailto:{{email}}">{{email}}</a> — <a href="https://github.com/{{username}}" title="Github profile">https://github.com/{{username}}</a></p>
|
||||
<p>{{name}} — <a href="mailto:{{email}}">{{email}}</a> — <a href="https://github.com/{{username}}" title="Github profile" class="url">https://github.com/{{username}}</a></p>
|
||||
</div><!--// footer -->
|
||||
|
||||
</div><!-- // inner -->
|
||||
|
||||
Reference in New Issue
Block a user