Skip to content

Commit

Permalink
Merge pull request #66 from batugane/master
Browse files Browse the repository at this point in the history
Add Social Media Icons to Footer & cog-validator-java to Tools List.
  • Loading branch information
cholmes authored May 28, 2024
2 parents 81b61ba + 5a7f785 commit 7c93606
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 1 deletion.
27 changes: 27 additions & 0 deletions assets/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -3801,3 +3801,30 @@
}

}
/* Icons */
.social-icons {
text-align: center;
margin-top: 20px;
}
.social-icons a {
margin: 0 10px;
transition: background-color 0.3s;
text-decoration: none;
border-bottom: none;
}
.social-icons img {
width: 64px;
height: 64px;
border-radius: 50%;
padding: 10px;
transition: background-color 0.3s;
}
.social-icons a:nth-child(1):hover img {
background-color: #8cc9f0;
}
.social-icons a:nth-child(2):hover img {
background-color: #c79cc8;
}
.social-icons a:nth-child(3):hover img {
background-color: #a89cc8;
}
Binary file added images/icons/github-icon.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 images/icons/slack-icon.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 images/icons/x-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 13 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,7 @@ <h2>Tools</h2>
<li><a href="https://github.com/fabric-io-rodrigues/GeoTiffCOG">GeoTiffCOG C#</a> is a C# Library for querying GeoTiff files, including Cloud Optimized GeoTIFFs.</li>
<li><a href="https://github.com/airbusgeo/cogger">Cogger</a> is a command line utility and library that produces a COG from a tiled geotiff. It works by shuffling the original geotiff file's bytes, and is therefore very fast as it does not induce an imagery recompression. Cogger is written in go, cross-platform, and does not depend on GDAL.</li>
<li><a href="https://nextgis.com">NextGIS</a> is a full SaaS stack of geospatial software: desktop, web and mobile. NextGIS Web (server) is able to create and serve Cloud Optimized GeoTIFFs. NextGIS Connect (QGIS plugin) is able to upload to NextGIS Web and add COGs back to QGIS in one click (with the style if any). <a href="https://nextgis.com/blog/cog-support/">Details</a></li>
<li><a href="https://github.com/batugane/cog-validator-java">cog-validator-java</a> is a Java-based tool for validating COG files. It ensures COG files meet required specifications and provides detailed error messages for correction. Ideal for Java developers.</li>
</ul>

<h2>Libraries</h2>
Expand Down Expand Up @@ -240,7 +241,18 @@ <h2>Data Providers</h2>

</ul>

<footer class="major">
<footer class="major">
<div class="social-icons">
<a href="https://x.com/cogeotiff" target="_blank">
<img src="images/icons/x-icon.png" alt="X">
</a>
<a href="https://github.com/cogeotiff" target="_blank">
<img src="images/icons/github-icon.png" alt="GitHub">
</a>
<a href="https://join.slack.com/t/cogeotiff/shared_invite/zt-17by75auf-39YWJEM08MkwEyM67TqeDg" target="_blank">
<img src="images/icons/slack-icon.png" alt="Slack">
</a>
</div>
</footer>
</section>

Expand Down

0 comments on commit 7c93606

Please sign in to comment.