Skip to content

Commit

Permalink
Initial upload of single column image portfolio
Browse files Browse the repository at this point in the history
Upload first 15 images
//: Todo, vertical Ttitle and image descriptions
  • Loading branch information
telemetry committed Jun 16, 2024
1 parent 3e93859 commit 46ef53c
Show file tree
Hide file tree
Showing 16 changed files with 88 additions and 0 deletions.
Binary file added .DS_Store
Binary file not shown.
Binary file added img/00.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/01.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/03.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/04.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/05.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/06.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/07.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/08.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/09.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/10.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/12.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/13.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/14.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/15.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
88 changes: 88 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap"
rel="stylesheet">
<title>Small Victories - Photography by Terrence Gillespie</title>
</head>

<style>
* {
box-sizing: border-box;
}


body {
margin: 0;
font-family: "DM Sans", sans-serif;
font-optical-sizing: auto;
font-weight: 500;
font-style: normal;
}

.header {
text-align: left;
}

/* Create two equal columns that floats next to each other */
.column {
/* float: left;
width: 50%; */

}

.column img {
margin-top: 24px;
}

.row {
max-width: 40em;
margin: 0 auto;
padding: 10px;
}

/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
</style>

<body>

<div class="row">
<div class="header">
<h1>Small Victories</h1>
<p>Photograhy by <a href="https://terrygillespie.com">Terrence Gillespie</a></p>
</div>
<div class="column">
<img src="img/00.jpg" style="width:100%" />
<img src="img/01.jpg" style="width:100%" />
<img src="img/03.jpg" style="width:100%" />
<img src="img/04.jpg" style="width:100%" />
<img src="img/05.jpg" style="width:100%" />
<img src="img/06.jpg" style="width:100%" />
<img src="img/07.jpg" style="width:100%" />
<img src="img/08.jpg" style="width:100%" />
<img src="img/09.jpg" style="width:100%" />
<img src="img/10.jpg" style="width:100%" />
<img src="img/11.jpg" style="width:100%" />
<img src="img/12.jpg" style="width:100%" />
<img src="img/13.jpg" style="width:100%" />
<img src="img/14.jpg" style="width:100%" />
</div>
<div class="footer">
<p><a href="mailto:" [email protected]">Contact </a> for prints, zines &amp; enquiries.</p>
<p>Small Victories | 2004 - 2024</p>
<p>&copy; Terrence Gillespie</p>
</div>
</body>

</html>

0 comments on commit 46ef53c

Please sign in to comment.