startrader (owner)

Revisions

  • 745177 startrader Fri May 15 22:40:01 -0700 2009
  • bcc107 startrader Fri May 15 22:27:57 -0700 2009
gist: 112581 Download_button fork
public
Public Clone URL: git://gist.github.com/112581.git
Embed All Files: show embed
resume.html.haml #
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
%html{:xmlns=>"http://www.w3.org/1999/xhtml", "xml:lang"=>"en-us", :lang=>"en-us"}
  %head
    %title John F. Miller - Resume
    %meta{"http-equiv"=>"content-type", :content=>"text/html; charset=utf-8"}
    %link{:rel=>"stylesheet", :href=>"stylesheets/screen.css", :type=>"text/css", :media=>"screen, projector", :charset=>"utf-8"}
    %link{:rel=>"stylesheet", :href=>"stylesheets/print.css", :type=>"text/css", :media=>"print", :charset=>"utf-8"}
    /[if IE]
      %link{:rel=>"stylesheet", :href=>"stylesheets/ie.css", :type=>"text/css", :media=>"screen, projector, printer", :charset=>"utf-8"}
  %body.application
    #container
      #personal
        %h1 John F. Miller
        #contact
          .address
            %p *****************
            %p Sacramento, CA 95825
          .phone
            %p (916) ***-**** - Home
            %p (805) ***-**** - Cell
          .email
            %p
              %a{:href=>"mailto:*****@*******.calpoly.edu"} *****@*******.calpoly.edu
      %img{:src=>'images/ynp.jpg'}
      %hr
      #attributes
        %ul
          %li team player
          %li computer/technology
          %li self-starter
          %li reliable
          %li communication skills
          %li well-rounded education
          %li detail oriented
          %li personable
          %li quick study
          %li motivated
         
          
      #main
        
        .section
          %h2 Education
          %ul
            %li Master of Divinity - Church Divinity School of the Pacific, Berkeley, CA (2008)
            %li Physics, B.A. - Cal Poly, San Luis Obispo, CA (2000)
        .section
          %h2 Work History
          %ul
            %li Nelson Pipe Organ Co. - Asst. Organ Tech. (2004-09)
            %li All Saints Episcopal Church, Sacramento, CA - Campus Ministry Intern (2004)
            %li Church Divinity School of the Pacific - Admin. Asst. for Admissions (2003-04)
            %li San Luis Obispo County District Attorney's Office: Family Support Division - Computer Tech. (2001-02)
            %li Cal Poly Robert E. Kennedy Library - Library Asst. II (1998-2000)
            %li University Christian Community - Program Coordinator(1996-1999)
        .section
          %h2 Technical Skills
          %ul
            %li Office Suits including: Microsoft Office, OpenOffice.org, Word Perfect, IBM Lotus
            %li Spreadsheet design
            %li Database Design and Maintenance: MySQL, Microsoft Access
            %li OS: Linux (Ubuntu), Microsoft Windows, Mac OSX
            %li Web Development: HTML, CSS, Javascript(including AJAX and Comet implementations), Ruby (including Rails, Merb, HAML, Compass), PHP5
            %li Programming: Ruby, JavaScript, PHP, Erlang, Java, C
        .section
          %h2 Other Activities
          %ul
            %li Physics/Math Tutor
            %li Volunteer Church Admin. Asst.
            %li Stewardship (Fund-raising) Chair
            %li Lay Preacher
            %li Choir Member
        .section
          %h2 References
          %p.references Out of respect for privacy, references will be promptly furnished upon request.
 
screen.sass #
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
84
85
86
87
88
89
90
91
92
@import blueprint.sass
@import blueprint/modules/scaffolding.sass
@import blueprint/modules/fancy_type
@import compass/utilities.sass
@import compass/reset.sass
 
=colborder2
  :padding-right= !blueprint_grid_width - 0.5 * !blueprint_grid_margin - 4
  :margin-right= !blueprint_grid_width - 0.5 * !blueprint_grid_margin
  :border-right 4px double #888
 
+blueprint-typography
 
body
  background-color: #0c246a
 
hr
  +colruler
 
#container
  +container
  background-color: #fffedf
  padding: 37px
  padding-top: 36px
  margin-top: 36px
  border-style: double
  border-width: 3px
 
#personal
  +column(19)
  :padding-top 2em
  h1
    +column(19)
    font-family: Georgia,serif
    font-size: 400%
  
  p + P
    margin-top: -1.5em
  #contact
    +column(18)
    +prepend(1)
    .address, .phone, .email
      +column(6)
    .email
      +last
      a
        color: #333
        text-decoration: none
      a:hover
        color: #0c246a
        text-decoration: underline
 
img
  +column(4,"last")
  border: solid 2px #333
 
#attributes
  +column(5)
  +colborder2
  ul
    +no-bullet
    li
      margin-bottom: 36px
      text-align: right
      +alt
      font-style: italic
      font-size: 133%
  
#main
  +column(18, "last")
  .section
    +clearfix
    h2
      +column(4)
      margin-top: 6px
      font-size: 20px
      line-height: 36px
      text-align: right
    p,ul
      +column(14, "last")
    .references
      margin-top: 18px
    ul
      +no-bullet
      li
        :text-indent -3em
        margin-left: 3em
  
#footer
  +quiet
  font-size: 85%
  text-align: center