mirror of
https://github.com/samsonjs/samhuri.net.git
synced 2026-03-25 09:05:47 +00:00
19 lines
310 B
Swift
19 lines
310 B
Swift
//
|
|
// Projects.swift
|
|
// SiteGenerator
|
|
//
|
|
// Created by Sami Samhuri on 2019-12-01.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct Projects: Page {
|
|
// Page properties
|
|
let title: String
|
|
let template: String?
|
|
let styles: [String]
|
|
let scripts: [String]
|
|
|
|
// Other properties
|
|
let projects: [Project]
|
|
}
|