-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
508 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
|
||
> [email protected] build /home/b/spc-175 | ||
> astro build | ||
|
||
11:55:54 AM [content] Unsupported file types found. Prefix with an underscore (`_`) to ignore: | ||
- config.ts.bak | ||
11:55:54 AM [content] Types generated 78ms | ||
11:55:54 AM [build] output target: static | ||
11:55:54 AM [build] Collecting build info... | ||
11:55:54 AM [build] Completed in 524ms. | ||
11:55:54 AM [build] Building static entrypoints... | ||
11:55:58 AM [build] Completed in 4.15s. | ||
|
||
building client | ||
Completed in 1.80s. | ||
|
||
|
||
generating static routes | ||
▶ src/pages/index.astro | ||
└─ /index.html (+25ms) | ||
▶ src/pages/175-timeline.astro | ||
└─ /175-timeline/index.html (+9ms) | ||
▶ src/pages/facilities.astro | ||
└─ /facilities/index.html (+9ms) | ||
▶ src/pages/projects/index.astro | ||
└─ /projects/index.html (+16ms) | ||
▶ src/pages/projects/detail.astro | ||
└─ /projects/detail/index.html (+19ms) | ||
▶ src/pages/projects/new.astro | ||
└─ /projects/new/index.html (+18ms) | ||
▶ src/pages/gallery.astro | ||
└─ /gallery/index.html (+7ms) | ||
▶ src/pages/author/index.astro | ||
└─ /author/index.html (+12ms) | ||
▶ src/pages/author/new-blog.astro | ||
└─ /author/new-blog/index.html (+10ms) | ||
▶ src/pages/author/edit.astro | ||
└─ /author/edit/index.html (+4ms) | ||
▶ src/pages/author/new.astro | ||
└─ /author/new/index.html (+5ms) | ||
▶ src/pages/blogs/index.astro | ||
└─ /blogs/index.html (+9ms) | ||
▶ src/pages/blogs/entry.astro | ||
└─ /blogs/entry/index.html (+9ms) | ||
▶ src/pages/auth/activate.astro | ||
└─ /auth/activate/index.html (+13ms) | ||
▶ src/pages/auth/signin.astro | ||
└─ /auth/signin/index.html (+11ms) | ||
▶ src/pages/auth/login.astro | ||
└─ /auth/login/index.html (+7ms) | ||
▶ src/pages/[...slug].astro |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
module.exports = { | ||
plugins: { | ||
'postcss-import': {}, | ||
'tailwindcss/nesting': {}, | ||
tailwindcss: {}, | ||
autoprefixer: {}, | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
interface Event { | ||
date: string; | ||
title: string; | ||
cover: string; | ||
} | ||
|
||
const TIMELINE_EVENTS: Array<Event> = [ | ||
{ | ||
date: "1850", | ||
title: "Inaguration of the College", | ||
cover: "https://cdn.jsdelivr.net/gh/BirnadinErick/spc-cdn@master/about-st-pst-placeholder.webp" | ||
}, | ||
{ | ||
date: "2000", | ||
title: "2000 year", | ||
cover: "https://cdn.jsdelivr.net/gh/BirnadinErick/spc-cdn@master/forest.webp" | ||
}, { | ||
date: "2009", | ||
title: "something happened", | ||
cover: "https://cdn.jsdelivr.net/gh/BirnadinErick/spc-cdn@master/hands.webp" | ||
}, { | ||
date: "2019", | ||
title: "another thing happened", | ||
cover: "https://unsplash.com/photos/NV5_g30gPfE/download?ixid=M3wxMjA3fDB8MXx0b3BpY3x8Q0R3dXdYSkFiRXd8fHx8fDJ8fDE3MjQ2NTk5NzV8&force=true" | ||
}, { | ||
date: "2020", | ||
title: "Covid-19 happened", | ||
cover: "https://unsplash.com/photos/w9KEokhajKw/download?ixid=M3wxMjA3fDB8MXxzZWFyY2h8Mnx8Y29yb25hfGVufDB8fHx8MTcyNDY2NDI4MXww&force=true" | ||
}, { | ||
date: "2025", | ||
title: "175 Annivesery will happen, i guess", | ||
cover: "https://unsplash.com/photos/KH8sFmJhKEI/download?ixid=M3wxMjA3fDB8MXx0b3BpY3x8Q0R3dXdYSkFiRXd8fHx8fDJ8fDE3MjQ2NTk5NzV8&force=true" | ||
}]; | ||
|
||
export default TIMELINE_EVENTS; |
Oops, something went wrong.