...
|
...
|
@@ -110,6 +110,12 @@
|
110
|
110
|
<h2>Professional and Leadership Experience </h2>
|
111
|
111
|
</div>
|
112
|
112
|
</div> <!-- end row -->
|
|
113
|
+ <?php
|
|
114
|
+ position('Company','City',"This is a position","August-November 2012","<ul><li>Here is a long point about this company lorem ipsum etc</li><li>Bacon ipsum dolor sit amet pork belly ground round meatball venison cow jowl spare ribs boudin bresaola pastrami ham. Swine prosciutto flank, pancetta rump sirloin kielbasa boudin pork loin. Prosciutto beef shank tail.</li>Bacon ipsum dolor sit amet pork belly ground round meatball venison cow jowl spare ribs boudin bresaola pastrami ham. Swine prosciutto flank, pancetta rump sirloin kielbasa boudin pork loin. Prosciutto beef shank tail.</li></ul>");
|
|
115
|
+ position('Company','City',"This is a position","August-November 2012","<ul><li>Here is a long point about this company lorem ipsum etc</li><li>Bacon ipsum dolor sit amet pork belly ground round meatball venison cow jowl spare ribs boudin bresaola pastrami ham. Swine prosciutto flank, pancetta rump sirloin kielbasa boudin pork loin. Prosciutto beef shank tail.</li>Bacon ipsum dolor sit amet pork belly ground round meatball venison cow jowl spare ribs boudin bresaola pastrami ham. Swine prosciutto flank, pancetta rump sirloin kielbasa boudin pork loin. Prosciutto beef shank tail.</li></ul>");
|
|
116
|
+ position('Company','City',"This is a position","August-November 2012","");
|
|
117
|
+ position('Company','City',"This is a position","August-November 2012","<ul><li>Here is a long point about this company lorem ipsum etc</li><li>Bacon ipsum dolor sit amet pork belly ground round meatball venison cow jowl spare ribs boudin bresaola pastrami ham. Swine prosciutto flank, pancetta rump sirloin kielbasa boudin pork loin. Prosciutto beef shank tail.</li>Bacon ipsum dolor sit amet pork belly ground round meatball venison cow jowl spare ribs boudin bresaola pastrami ham. Swine prosciutto flank, pancetta rump sirloin kielbasa boudin pork loin. Prosciutto beef shank tail.</li></ul>");
|
|
118
|
+ ?>
|
113
|
119
|
|
114
|
120
|
|
115
|
121
|
</section>
|
...
|
...
|
@@ -156,19 +162,19 @@ These are some functions to make uniform sections
|
156
|
156
|
|
157
|
157
|
*/
|
158
|
158
|
|
159
|
|
-function position($title,$city,$position,$dates,$blob) {
|
|
159
|
+function position($company,$city,$job,$dates,$blob) {
|
160
|
160
|
/*
|
161
|
161
|
This function is for use in the experience section. It unififes formatting for the various positions.
|
162
|
162
|
*/
|
163
|
163
|
|
164
|
164
|
echo '
|
165
|
165
|
<div class="row">
|
166
|
|
- <div class="span6" class="pull-left" style="font-weight: bold">'.$title.'</div>
|
|
166
|
+ <div class="span6" class="pull-left" style="font-weight: bold">'.$company.'</div>
|
167
|
167
|
<div class="span6 class="pull-right" style="font-weight: bold">'.$city'</div>
|
168
|
168
|
</div> <!-- end row-->
|
169
|
169
|
|
170
|
170
|
<div class="row">
|
171
|
|
- <div class="span6" class="pull-left" style="font-style:italic">'.$position.'</div>
|
|
171
|
+ <div class="span6" class="pull-left" style="font-style:italic">'.$job.'</div>
|
172
|
172
|
<div class="span6 class="pull-right" style="font-style:italic">'.$dates'</div>
|
173
|
173
|
</div> <!-- end row-->
|
174
|
174
|
';
|