mirror of
https://github.com/morten-olsen/morten-olsen.github.io.git
synced 2026-02-08 01:46:28 +01:00
cleanup
This commit is contained in:
31
content/config.ts
Normal file
31
content/config.ts
Normal file
@@ -0,0 +1,31 @@
|
||||
import { Config } from '../types/config';
|
||||
|
||||
const config: Config = {
|
||||
profile: {
|
||||
path: 'profile.yml',
|
||||
},
|
||||
frontpage: {
|
||||
react: {
|
||||
template: 'templates/react/pages/frontpage/index.tsx',
|
||||
},
|
||||
},
|
||||
resume: {
|
||||
latex: {
|
||||
template: 'templates/latex/resume.tex',
|
||||
},
|
||||
},
|
||||
articles: {
|
||||
pattern: 'articles/**/*.md',
|
||||
react: {
|
||||
template: 'templates/react/pages/article/index.tsx',
|
||||
},
|
||||
latex: {
|
||||
template: 'templates/latex/article.tex',
|
||||
},
|
||||
},
|
||||
positions: {
|
||||
pattern: 'resume/positions/**/*.md',
|
||||
},
|
||||
};
|
||||
|
||||
export default config;
|
||||
Reference in New Issue
Block a user