Softeon Theme
Portfolio

Jekyll Theme

SOFTEON THEME

a jekyll theme for portfolios

About

ABOUT

Your Name

Summary

  • TagA
  • TagB
  • TagC
  • TagD
  • TagE
  • TagF
Link1 Link2
Link1 # Link2 # Link3 #

Projects

Projects Sample Alpha

Projects Sample Alpha thumbnail
  • Sample
  • Projects
  • Order 90

Overview

This sample post is designed to verify how Markdown elements render inside a project page. It includes regular paragraphs, emphasis, links, lists, tables, code blocks, blockquotes, images, and a collapsible section on one page.

Within a paragraph, you can check bold text, italic text, strikethrough text, and inline code. Links render like Portfolio Home.

Headings

H3 Heading

This paragraph sits under an H3 heading. It is short enough to make heading and paragraph spacing easy to inspect.

H4 Heading

This paragraph sits under an H4 heading. If the theme does not define a custom H4 style, the browser default or inherited style may be visible.

Lists

Unordered list:

  • Gameplay loop
  • Level design
  • Technical art
  • UI polish

Ordered list:

  1. Prototype the mechanic
  2. Test the interaction
  3. Tune the feedback
  4. Ship the build

Nested list:

  • Player
    • Movement
    • Camera
    • Combat
  • World
    • Lighting
    • Navigation
    • Checkpoints

Task list:

  • Markdown preview content
  • Syntax highlighting sample
  • Final PDF inspection

Blockquote

Good feedback is visible, audible, and timely. The player should understand what happened before they need to ask why.

Table

Area Goal Status
Input Responsive movement Done
Combat Readable hit timing In progress
UI Clear status feedback Review
Build Export-ready package Planned

Code

JavaScript sample:

const player = {
  name: "Alpha",
  health: 100,
  inventory: ["key", "map", "torch"],
};

function applyDamage(target, amount) {
  target.health = Math.max(0, target.health - amount);
  return target.health;
}

console.log(applyDamage(player, 24));

Python sample:

from dataclasses import dataclass

@dataclass
class Quest:
    title: str
    completed: bool = False

quest = Quest("Find the hidden gate")
print(f"{quest.title}: {quest.completed}")

C++ sample:

#include <iostream>
#include <string>

int main() {
    std::string message = "Hello from C++";
    std::cout << message << std::endl;
    return 0;
}

Media

This image is included to check image rendering and print sizing.

Sample project thumbnail

Details

Implementation Notes This section checks how an HTML details element appears inside Markdown content. - Collapsed and expanded states - Internal paragraph spacing - Nested list rendering

Horizontal Rule


This is the final paragraph. Use it to inspect the horizontal rule above, paragraph spacing, and the bottom spacing of the post.

Projects

Projects Sample Beta

Projects Sample Beta thumbnail
  • Sample
  • Projects
  • Order 70

Overview

This sample post checks the middle ordering of the projects area.

Check

Confirm that it appears after Alpha and before the existing combat input test.

Projects

Projects Sample Gamma

Projects Sample Gamma thumbnail
  • Sample
  • Projects
  • Order 50

Overview

This post checks a lower sample order in the projects area.

Check

Confirm that it appears after Beta and before the existing combat input test.

Projects

Projects Existing Sample

Projects Existing Sample thumbnail
  • Unity
  • Projects
  • Order 40

Overview

This test document records input buffering, attack startup timing, and follow-up input chaining.

Checklist

  • Confirm that basic attack input is processed correctly.
  • Confirm that follow-up input entered within a short window chains into a combo.
  • Confirm that input during hit reactions or dodges is ignored as intended.

Result

The input flow is organized so it can be reviewed on a single page.

Other Projects

Other Projects Sample Alpha

Other Projects Sample Alpha thumbnail
  • Sample
  • Archive
  • Order 85

Overview

This sample post checks whether it appears first in the other-projects area.

Check

Confirm that it appears as the first card in the Archive section.

Other Projects

Other Projects Sample Beta

Other Projects Sample Beta thumbnail
  • Sample
  • Archive
  • Order 65

Overview

This sample post checks the middle ordering of the other-projects area.

Check

Confirm that it appears after Alpha and before Gamma.

Other Projects

Other Projects Sample Gamma

Other Projects Sample Gamma thumbnail
  • Sample
  • Archive
  • Order 45

Overview

This post checks a lower sample order in the other-projects area.

Check

Confirm that it appears before the existing UI feedback test.

Current Projects

Current Project Sample Alpha

Current Project Sample Alpha thumbnail
  • Sample
  • Current
  • Order 95

Overview

This is the top sample post that should be selected for the current-projects area.

Check

Because this post has a higher display_order than the other samples in the same area, only this item should appear on the home page.