Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 3 additions & 25 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build and Deploy Site
name: Deploy Static Site

on:
push:
Expand All @@ -9,38 +9,16 @@ on:
- master

jobs:
build-and-deploy-site:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 0

- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: '0.121.1'
hugo-extended: true

- name: Verify Hugo Extended
run: hugo version

- name: Build site with Hugo
run: hugo -D

- name: Check HTML
uses: chabad360/htmlproofer@master
with:
directory: "./public"
arguments: --only-4xx --check-favicon --check-html --assume-extension --empty-alt-ignore --disable-external
continue-on-error: true

- name: Deploy to GitHub Pages
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public
publish_dir: .
force_orphan: true
3 changes: 0 additions & 3 deletions .gitmodules

This file was deleted.

Empty file removed .hugo_build.lock
Empty file.
6 changes: 0 additions & 6 deletions archetypes/default.md

This file was deleted.

69 changes: 0 additions & 69 deletions assembly_with_code.html

This file was deleted.

22 changes: 0 additions & 22 deletions config.toml

This file was deleted.

16 changes: 0 additions & 16 deletions content/post/drone.md

This file was deleted.

28 changes: 0 additions & 28 deletions content/post/drops.md

This file was deleted.

26 changes: 0 additions & 26 deletions content/post/motionpilot.md

This file was deleted.

24 changes: 0 additions & 24 deletions content/post/pharaon.md

This file was deleted.

24 changes: 0 additions & 24 deletions content/post/photon.md

This file was deleted.

18 changes: 0 additions & 18 deletions content/post/stack.md

This file was deleted.

12 changes: 0 additions & 12 deletions content/post/steel.md

This file was deleted.

16 changes: 0 additions & 16 deletions content/post/turbine.md

This file was deleted.

58 changes: 58 additions & 0 deletions drone.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FPV Drone - SARK</title>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
fontFamily: {
'sans': ['Inter', 'system-ui', 'sans-serif']
}
}
}
}
</script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700&display=swap" rel="stylesheet">
</head>
<body class="bg-gray-50 font-sans">
<!-- Header -->
<header class="bg-white shadow-sm">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between items-center py-6">
<a href="index.html" class="hover:opacity-80 transition-opacity"><img src="logo.svg" alt="SARK" class="h-12"></a>

</div>
</div>
</header>

<!-- Content -->
<main class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8 py-12">
<div class="bg-white rounded-lg shadow-md p-8">
<h1 class="text-4xl md:text-5xl font-light text-gray-900 mb-8">FPV Drone</h1>
<div class="prose prose-lg max-w-none">
<img src="static/images/Drone/drone_trim_hero.jpg" alt="FPV Drone Hero" class="w-full rounded-lg mb-8">
<img src="static/images/Drone/180817_trio.jpg" alt="Picture of Drone" class="w-full rounded-lg mb-8">

<img src="static/images/Drone/assembled_drone.png" alt="Picture of Drone" class="w-full rounded-lg mb-8">

<img src="static/images/Drone/box_droneV1_controllerV3.jpeg" alt="Picture of Drone" class="w-full rounded-lg mb-8">

<img src="static/images/Drone/exploded_drone.png" alt="Picture of Drone" class="w-full rounded-lg mb-8">

<img src="static/images/Drone/drone_increments.png" alt="Picture of Drone" class="w-full rounded-lg mb-8">
</div>
</div>
</main>

<!-- Footer -->
<footer class="bg-gray-800 text-white py-8 mt-16">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
<p>&copy; 2025 SARK. All rights reserved.</p>
</div>
</footer>
</body>
</html>
Loading