diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..56e7f6f Binary files /dev/null and b/.DS_Store differ diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..89af1b0 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "themes/PaperMod"] + path = themes/PaperMod + url = https://github.com/adityatelange/hugo-PaperMod.git diff --git a/.hugo_build.lock b/.hugo_build.lock new file mode 100644 index 0000000..e69de29 diff --git a/archetypes/.DS_Store b/archetypes/.DS_Store new file mode 100644 index 0000000..8289e96 Binary files /dev/null and b/archetypes/.DS_Store differ diff --git a/config.yml b/config.yml index d53b44c..78e2324 100644 --- a/config.yml +++ b/config.yml @@ -1,3 +1,107 @@ -baseURL: http://example.org/ languageCode: en-us -title: My New Hugo Site +baseURL: "https://sindrekjelsrud.github.io/" +title: Sindre's Website +theme: PaperMod + +enableInlineShortcodes: true +enableMoji: true # allowing using emoji +enableRobotsTXT: true + +buildDrafts: false +buildFuture: false +buildExpired: false + +#googleAnalytics: UA-123-45 + +paginate: 5 # articles per page + +minify: + disableXML: true + # minifyOutput: true + +params: + env: production # to enable google analytics, opengraph, twitter-cards and schema. + title: Sindre Kjelsrud + description: "Student" + author: Sindre # author: ["Me", "You"] # multiple authors + images: [""] + + DateFormat: "January 2, 2006" + defaultTheme: auto # dark, light + disableThemeToggle: false + ShowReadingTime: true + ShowShareButtons: false + ShowPostNavLinks: true + ShowBreadCrumbs: true + ShowCodeCopyButtons: false + disableSpecial1stPost: false + disableScrollToTop: false + comments: false + hidemeta: false + hideSummary: false + showtoc: false + tocopen: false + + label: + text: "Home" + + # profile-mode + profileMode: + enabled: true # needs to be explicitly set + title: "Sindre Kjelsrud" + subtitle: "Student at Western University of Applied Sciences" + imageUrl: "img/me-myself-and-i.png" + imageTitle: "Me, Myself and I" + imageWidth: 150 + imageHeight: 150 + buttons: + - name: Projects + url: projects + - name: Resume + url: resume.pdf + + # home-info mode + homeInfoParams: + Title: "Welcome! 🚀" + Content: "My name is Sindre Kjelsrud, and I'm an IT-Student at Western University of Applied Sciences." + + socialIcons: + - name: linkedin + url: "https://www.linkedin.com/in/sindre-kjelsrud-345583218/" + - name: github + url: "https://github.com/SindreKjelsrud" + - name: instagram + url: "https://instagram.com/SindreKjelsrud" + + # for search + # https://fusejs.io/api/options.html + fuseOpts: + isCaseSensitive: false + shouldSort: true + location: 0 + distance: 1000 + threshold: 0.4 + minMatchCharLength: 0 + keys: ["title", "permalink", "summary", "content"] +menu: + main: + - identifier: about + name: About + url: /about/ + weight: 1 + - identifier: projects + name: Projects + url: /projects/ + weight: 2 + - identifier: resume + name: Resume + url: /resume.pdf/ + weight: 3 + - identifier: blog + name: Blog + url: /blog-posts/ + weight: 4 + #- identifier: example + # name: example.org + # url: https://example.org + # weight: 30 diff --git a/content/.DS_Store b/content/.DS_Store new file mode 100644 index 0000000..8feceda Binary files /dev/null and b/content/.DS_Store differ diff --git a/content/Page.md b/content/Page.md new file mode 100644 index 0000000..4a273da --- /dev/null +++ b/content/Page.md @@ -0,0 +1,37 @@ +--- +title: "My 1st post" +date: 2020-09-15T11:30:03+00:00 +# weight: 1 +# aliases: ["/first"] +tags: ["first"] +author: "Me" +# author: ["Me", "You"] # multiple authors +showToc: true +TocOpen: false +draft: false +hidemeta: false +comments: false +description: "Desc Text." +canonicalURL: "https://canonical.url/to/page" +disableHLJS: true # to disable highlightjs +disableShare: false +disableHLJS: false +hideSummary: false +searchHidden: true +ShowReadingTime: true +ShowBreadCrumbs: true +ShowPostNavLinks: true +ShowWordCount: true +ShowRssButtonInSectionTermList: true +UseHugoToc: true +cover: + image: "" # image path/url + alt: "" # alt text + caption: "" # display caption under cover + relative: false # when using page bundles set this to true + hidden: true # only hide on current single page +editPost: + URL: "https://github.com//content" + Text: "Suggest Changes" # edit text + appendFilePath: true # to append file path to Edit link +--- \ No newline at end of file diff --git a/content/about.md b/content/about.md new file mode 100644 index 0000000..fdc6711 --- /dev/null +++ b/content/about.md @@ -0,0 +1,36 @@ +--- +title: "About" +date: true +draft: false +--- +```java +public class Me { + + private String self; + + public Information info(self) { + self.name = "Sindre Kjelsrud"; + self.nickname = "Sid"; + self.year_born = 1999; + self.hometown = "Skedsmokorset, Viken"; + self.curr_location = "Nygård, Bergen"; + self.university = "Western University of Applied Sciences"; + } + + public Favourites favs(self) { + self.fav_sport = "bouldering, discgolf"; + self.fav_color = "purple"; + self.fav_series = "Silicon Valley"; + self.fav_anime = "One Piece"; + self.fav_movie = "The Social Network || Ready Player One"; + self.fav_animemov = "Le Sommet des Dieux"; + } + + public ContactInformation contact_info(self) { + self.github = "SindreKjelsrud"; + self.linkedin = "Sindre Kjelsrud"; + self.instagram = "sindrekjelsrud"; + self.strava = "Sindre Kjelsrud"; + } +} +``` diff --git a/content/blog-posts/GameboyColor.md b/content/blog-posts/GameboyColor.md new file mode 100644 index 0000000..ffd29ce --- /dev/null +++ b/content/blog-posts/GameboyColor.md @@ -0,0 +1,9 @@ +--- +title: "Gameboy Color mod" +date: 2022-09-23T21:08:27+02:00 +description: "" +author: "Sindre Kjelsrud" +image: "" +draft: true +--- + diff --git a/content/blog-posts/Wii.md b/content/blog-posts/Wii.md new file mode 100644 index 0000000..e8ce3e7 --- /dev/null +++ b/content/blog-posts/Wii.md @@ -0,0 +1,8 @@ +--- +title: "Wii Homebrew mod" +date: 2022-09-23T21:13:00+02:00 +description: "" +author: "Sindre Kjelsrud" +image: "" +draft: true +--- diff --git a/content/blog-posts/new-blog-post.md b/content/blog-posts/new-blog-post.md new file mode 100644 index 0000000..729ee99 --- /dev/null +++ b/content/blog-posts/new-blog-post.md @@ -0,0 +1,10 @@ +--- +title: "First post" +date: 2022-09-13T22:28:57+02:00 +description: "Testing out blog function in Hugo!" +author: "Sindre Kjelsrud" +showToc: false +draft: false +--- +# It´s alive!! +Nais. \ No newline at end of file diff --git a/content/projects.md b/content/projects.md new file mode 100644 index 0000000..0ee9812 --- /dev/null +++ b/content/projects.md @@ -0,0 +1,31 @@ +--- +title: "Projects👨‍💻" +showToc: true +draft: false +--- +--- +# Coding Projects +### 🤖 sidBot | A Discord bot +_Dec. 2021 - Mar. 2022, Python_ +>Github Repo: +- A Discord bot that responds to messages & commands with pictures and special answers depending on the message/command. +- It´s all written in Python. +- Some commands get information from APIs. + - For example, the command "!plsdog" uses this [API](https://dog.ceo/api) to show the user some cute pictures of dogs across the internet. +--- +### My Personal Website +_Sep. 2022 - Now, HTML, CSS, JS_ +>Github Repo: +- This website uses [PaperMod](https://github.com/adityatelange/hugo-PaperMod) theme and is based on Hugo. +--- +### 🍪 Cookie Clicker +_Nov. 2021 - Dec. 2021, Java_ +>Github Repo: +- A game where you collect _cookies_ by clicking on a cookie. +- Written purely in Java. +- Had some help from YouTube (hehe) +--- +# Hobby Projects +### Gameboy Color mod +_Sep. 2022 - Sep. 2022_ +- in the making.. (pictures coming) \ No newline at end of file diff --git a/content/resume.pdf b/content/resume.pdf new file mode 100755 index 0000000..fb61f71 Binary files /dev/null and b/content/resume.pdf differ diff --git a/resources/.DS_Store b/resources/.DS_Store new file mode 100644 index 0000000..1c23e8c Binary files /dev/null and b/resources/.DS_Store differ diff --git a/resources/_gen/.DS_Store b/resources/_gen/.DS_Store new file mode 100644 index 0000000..5d7a416 Binary files /dev/null and b/resources/_gen/.DS_Store differ diff --git a/static/.DS_Store b/static/.DS_Store new file mode 100644 index 0000000..59ef579 Binary files /dev/null and b/static/.DS_Store differ diff --git a/static/img/.DS_Store b/static/img/.DS_Store new file mode 100644 index 0000000..b20a1ce Binary files /dev/null and b/static/img/.DS_Store differ diff --git a/static/img/me-myself-and-i.png b/static/img/me-myself-and-i.png new file mode 100644 index 0000000..c3f4b68 Binary files /dev/null and b/static/img/me-myself-and-i.png differ diff --git a/themes/.DS_Store b/themes/.DS_Store new file mode 100644 index 0000000..7ea2de6 Binary files /dev/null and b/themes/.DS_Store differ diff --git a/themes/PaperMod b/themes/PaperMod new file mode 160000 index 0000000..3a0a481 --- /dev/null +++ b/themes/PaperMod @@ -0,0 +1 @@ +Subproject commit 3a0a4811cbc07c0bea09ef55b3c1bfb39b48cddd