-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
109 lines (96 loc) · 4.02 KB
/
index.html
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>s3m — Selected Work</title>
<meta name="description" content="Work related to improved semistructured merge.">
<!-- ******************************************************************************************
Set the type and color theme here - the Pro version contains additional themes -->
<link href="css/hawthorne_type2_color3.css" rel="stylesheet">
<!-- ************************************************************************************* -->
<link href="css/font-awesome.min.css" rel="stylesheet">
<script src="js/vendor/modernizr.js"></script>
</head>
<body>
<div class="top-border"></div>
<div class="row">
<div class="small-12 medium-12 large-12 small-centered columns">
<header>
<h1><a href="index.html"><img src="img/S3M_logo.png" alt="Super 3-way Merge" /></a></h1>
<h2><a href="index.html">projects</a></h2>
<!--
<div class="logo">
<a href="index.html"><img src="img/logo.png" alt="Your Name Here" /></a>
</div>
-->
</header>
</div>
<div class="small-12 medium-12 large-12 small-centered columns">
<nav>
<ul class="inline-list-custom">
<li><a href="index.html" class="current">Selected Work</a></li>
<!-- <li><a href="about.html">About</a></li> -->
</ul>
</nav>
</div>
</div>
<div class="row">
<div class="small-12 medium-12 large-12 columns">
<ul class="small-block-grid-1 medium-block-grid-3 large-block-grid-3 inline-list-custom">
<!-- Begin project -->
<li>
<div class="thumbnail">
<div class="thumbnail-img">
<div class="thumbnail-hover"><a href="eis.html"></a></div>
<a href="eis.html"><img src="img/projects/eis.png" alt="Evaluating and Improving Semistructured Merge" /></a>
</div>
<div class="thumbnail-caption"><a class="caption-link" href="eis.html">Evaluating and Improving Semistructured Merge</a></div>
</div>
</li>
<li>
<div class="thumbnail">
<div class="thumbnail-img">
<div class="thumbnail-hover"><a href="svj.html"></a></div>
<a href="svj.html"><img src="img/projects/svj.png" alt="The Impact of Structure on Software Merging Semistructured versus Structured Merge" /></a>
</div>
<div class="thumbnail-caption"><a class="caption-link" href="svj.html">The Impact of Structure on Software Merging: Semistructured versus Structured Merge</a></div>
</div>
</li>
<!-- <li>
<div class="thumbnail">
<div class="thumbnail-img">
<div class="thumbnail-hover"><a href="svj.html"></a></div>
<a href="isi.html"><img src="img/about-photo.png" alt="Semistructured Merge on Industry"/></a>
</div>
<div class="thumbnail-caption"><a class="caption-link" href="isi.html">Semistructured Merge on Industry</a></div>
</div>
</li>-->
<!-- End project -->
</ul>
</div>
</div>
<div class="row">
<div class="small-12 medium-12 large-12 columns">
<footer>
<ul>
<li>© 2016 <a href="index.html">spgroup</a>. All rights reserved.</li>
<li><a href="mailto:gjcc@cin.ufpe.br"><i class="fa fa-envelope-o"></i> gjcc@cin.ufpe.br</a></li>
<!-- *****************************************************************************************
The "Powered by Type & Grids" link in the footer is required in the Free version
typeandgrids.com/pirates -->
<li>Powered by <a href="http://www.typeandgrids.com" target="_blank">Type & Grids</a></li>
<!-- ************************************************************************************ -->
</ul>
<!-- <div class="social-icons">
<a href="http://www.twitter.com/typeandgrids" target="_blank"><i class="fa fa-twitter-square fa-2x"></i></a>
<a href="http://www.facebook.com/typeandgrids" target="_blank"><i class="fa fa-facebook-square fa-2x"></i></a>
</div> -->
</footer>
</div>
</div>
<script src="js/vendor/jquery.min.js"></script>
<script src="js/foundation.min.js"></script>
<script src="js/hawthorne.js"></script>
</body>
</html>