Skip to content

Commit c785a5f

Browse files
committed
Convert index.html to templates
1 parent a8a8fce commit c785a5f

File tree

6 files changed

+145
-130
lines changed

6 files changed

+145
-130
lines changed

_includes/footer.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
</div>
2+
</div><!-- end container -->
3+
</div><!-- end main-wrap -->
4+
5+
<div id="footer-wrap">
6+
<div class="container">
7+
<p>Alan P Boyle, PhD | <a href="mailto:[email protected]">[email protected]</a> | <a href="ABoyle_CV.pdf" onclick="var that=this;_gaq.push(['_trackEvent','Download','PDF',this.href]);setTimeout(function(){location.href=that.href;},500);return false;">CV</a> | Ann Arbor, MI</p>
8+
</div><!-- end container -->
9+
</div><!-- end footer-wrap -->
10+
11+
12+
</body>
13+
</html>

_includes/header.html

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>{{page.title}} | The Boyle Lab</title>
5+
6+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
7+
8+
<link rel='stylesheet' type='text/css' href='main_style.css' />
9+
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,700,400italic,700italic' rel='stylesheet' type='text/css' />
10+
11+
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js'></script>
12+
<script type="text/javascript">
13+
14+
var _gaq = _gaq || [];
15+
_gaq.push(['_setAccount', 'UA-33218724-1']);
16+
_gaq.push(['_trackPageview']);
17+
18+
(function() {
19+
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
20+
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
21+
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
22+
})();
23+
24+
</script>
25+
</head>
26+
<body class='short-header-page'>
27+
<div id="header-wrap">
28+
<div class="container">
29+
<table id="header">
30+
<tr>
31+
<td id="header-right">
32+
<table>
33+
<tr>
34+
<td class="phone-number"><img src="images/U-M_2color-HorizontalReversed.30px.png" height=30></td>
35+
<td>
36+
<div style="text-align:left;">
37+
<span class="wsite-social">
38+
<a class='wsite-social-item wsite-social-flickr' href='http://scholar.google.com/citations?user=yAqEpxMAAAAJ' target='_blank'></a><a class='wsite-social-item wsite-social-plus' href='ABoyle_CV.pdf' target='_blank' onclick="var that=this;_gaq.push(['_trackEvent','Download','PDF',this.href]);setTimeout(function(){location.href=that.href;},500);return false;"></a><a class='wsite-social-item wsite-social-twitter' href='http://twitter.com/ap_boyle' target='_blank'></a><a class='wsite-social-item wsite-social-linkedin' href='http://www.linkedin.com/profile/view?id=38624939' target='_blank'></a><a class='wsite-social-item wsite-social-mail' href='mailto:[email protected]' target='_blank'></a>
39+
</span>
40+
</div>
41+
</td>
42+
</tr>
43+
</table>
44+
</td>
45+
</tr>
46+
</table>
47+
</div><!-- end container -->
48+
</div><!-- end header-wrap -->

_includes/nav.html

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{% assign current = page.url | downcase | split: '/' %}
2+
3+
<div id="nav-wrap">
4+
<div class="container">
5+
<table>
6+
<tr>
7+
<td><span id="wsite-title">The Boyle Lab</span></td>
8+
<td id="nav">
9+
<div id="navigation">
10+
<ul class='wsite-menu-default'>
11+
<li {% if current[1] == 'index.html' $}id='active'{% endif %}><a href='index.html'>Home</a></li>
12+
<li {% if current[1] == 'research.html' $}id='active'{% endif %}><a href='research.html'>Research</a></li>
13+
<li {% if current[1] == 'software.html' $}id='active'{% endif %}><a href='software.html'>Software</a></li>
14+
<li {% if current[1] == 'publications.html' $}id='active'{% endif %}><a href='publications.html'>Publications</a></li>
15+
<li {% if current[1] == 'jobs.html' $}id='active'{% endif %}><a href='jobs.html'>Jobs</a></li>
16+
</ul>
17+
</div>
18+
</td>
19+
</tr>
20+
</table>
21+
</div><!-- end container -->
22+
</div><!-- end nav-wrap -->

_layouts/default.html

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{% include header.html %}
2+
3+
{% include nav.html %}
4+
5+
<div id="banner-wrap">
6+
<div class="container">
7+
<div id="banner">
8+
<div class="wsite-header"></div>
9+
<div style="clear:both;"></div>
10+
</div><!-- end banner -->
11+
</div><!-- end container -->
12+
</div><!-- end banner-wrap -->
13+
14+
<div id="main-wrap">
15+
<div class="container">
16+
<div class="wsite-content">
17+
{{content}}
18+
</div>
19+
</div><!-- end container -->
20+
</div><!-- end main-wrap -->
21+
22+
{% include footer.html %}

index.html

Lines changed: 0 additions & 130 deletions
This file was deleted.

index.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
---
2+
title: Home
3+
layout: default
4+
---
5+
6+
<table width=100%>
7+
<tr>
8+
<td>
9+
<p>
10+
</p>
11+
<br>
12+
<p>
13+
I am an Associate Professor in the Department of Computational Medicine & Bioinformatics in the University of Michigian Medical School. Previously I was a postdoctoral scholar in the Department of Genetics in the Stanford University School of Medicine working under <a href="http://snyderlab.stanford.edu/">Dr. Michael Snyder</a>.
14+
I obtained my Ph.D. in Computational Biology & Bioinformatics from the Duke University Institute for Genome Sciences and Policy in December of 2009. There I was co-advised by <a href="http://fureylab.web.unc.edu/">Dr. Terry Furey</a> and <a href="http://www.genome.duke.edu/labs/crawford/">Dr. Greg Crawford</a>.
15+
</p>
16+
<br>
17+
<p>
18+
In the modern era of genomics, high-throughput experiments provide molecular biology data that has completely changed how we are able to explore biological systems.
19+
We can apply computational tools to help answer biological problems that were previously intractable.
20+
We aim to combine computational approaches with high-throughput biological assays to better understand the whole human transcriptional regulatory system.
21+
</p>
22+
<br>
23+
<p>
24+
Understanding gene regulation at the transcriptional level is critical to understanding complex biological systems and human disease. In virtually all organisms gene regulation is mediated by a “regulatory code” in which distinct combinations of specific transcription factors collaborate to regulate the expression of individual genes.
25+
This code is complex and not readily obvious from sequences alone.
26+
It likely involves many cis-regulatory modules that exist both upstream and within genes.
27+
In addition, mounting evidence suggests that major differences between individuals and species lie at the level of gene regulation and that changes in cis-regulatory sequences are responsible for these effects.
28+
</p>
29+
<br>
30+
<p>
31+
My research aims to explore this regulatory code by examining the non-coding regulatory elements in the human genome.
32+
I have actively participated in the ENCODE project since 2007 as a member of the analysis working group (AWG) and as a member of both the Snyder and the Furey/Crawford labs. I have more recently been involved in the modENCODE and mouse ENCODE projects. I have had the opportunity to lead a collaborative effort by the modENCODE consortium to perform a final round of regulatory analysis and publish the concluding findings of the project.
33+
</p>
34+
</td>
35+
<td width=200px>
36+
<a href="DNA_Cloud.png"><img src="images/DNA_Cloud_small.png" style="margin:0px 10px 0px 10px"></a>
37+
</td>
38+
</tr>
39+
</table>
40+

0 commit comments

Comments
 (0)