Skip to content

Commit

Permalink
Merge pull request #17 from alanmmckay/new_writing
Browse files Browse the repository at this point in the history
main <- new_writing
  • Loading branch information
alanmmckay authored Apr 2, 2024
2 parents d9c9a6d + c568a80 commit ed782ef
Show file tree
Hide file tree
Showing 16 changed files with 833 additions and 2 deletions.
12 changes: 11 additions & 1 deletion photography/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,14 @@
<section id='writingsWrapper'>
<section>
<article>
<?php
if(
(isset($_GET['page']) && $_GET['page'] <= 1) ||
!(isset($_GET['page'])) &&
!(isset($_GET['intro']))

){
?>
<section class='info'>
<header>
<h2>On VSCO</h2>
Expand All @@ -35,6 +42,9 @@
</p>
<hr>
</section>
<?php
}
?>
<header>
<h1>Photography</h1>
</header>
Expand All @@ -55,7 +65,7 @@
for($i = 0; $i < min(($images_quantity - $initial_index),$image_count); $i++){
echo "<a href='".$json_data[$image_index]['share_link']."' target='_blank' rel='noopener noreferrer'>";
echo "<figure>";
echo "<img load='lazy' src='thumbnails/".$json_data[$image_index]['webp_file']."'?static/>";
echo "<img load='lazy' src='thumbnails/".$json_data[$image_index]['webp_file']."'/>";
$image_index = $image_index + 1;
echo "</figure>";
echo "</a>";
Expand Down
Binary file added projects/gallery/images/02_resize.gif
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 projects/gallery/images/03_firstframe.png
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 projects/gallery/images/03_resize.gif
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 projects/gallery/images/bottom_of_gallery.png
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 projects/gallery/images/firstframe.png
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 projects/gallery/images/instagram.png
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 projects/gallery/images/instagram_blurred.png
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 projects/gallery/images/static_gallery.png
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 projects/gallery/images/vsco_bottom.png
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 projects/gallery/images/vsco_grid_view.png
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 projects/gallery/images/vsco_sign-in.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
803 changes: 803 additions & 0 deletions projects/gallery/index.php

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions projects/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
<img src='../images/description.svg' alt='Icon for blog link'>
Projects
</a>
<a href='gallery/' class='writing'> Javascript: Balanced Image Gallery</a>
<a href='dataflow/' class='writing'> Research: Privacy and Dataflow</a>
<a href='social/' class='writing'> Project: Social Computing</a>
<a href='aquatint/' class='writing'> Web Development: Aquatint Image Processor</a>
Expand Down
11 changes: 10 additions & 1 deletion sitemap.xml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@
</loc>

<lastmod>
2024-02-09
2024-04-02
</lastmod>
</url>
<url>
Expand Down Expand Up @@ -209,5 +209,14 @@
2024-02-09
</lastmod>
</url>
<url>
<loc>
https://alanmckay.blog/projects/gallery/
</loc>

<lastmod>
2024-04-02
</lastmod>
</url>
</urlset>

8 changes: 8 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -366,6 +366,10 @@ code pre.info-code{
width:70vw;
}

code pre.test-code{
width:85vw;
}

.dynamic-figure-container{
align-items:center;
}
Expand Down Expand Up @@ -636,6 +640,10 @@ div.image-col figure{
width:65vw;
}

code pre.test-code{
width:85vw;
}

.dynamic-figure-container .dynamic-figure-view{
width:55%;
}
Expand Down

0 comments on commit ed782ef

Please sign in to comment.