diff --git a/config.toml b/config.toml index 54a67c0..1efa34c 100644 --- a/config.toml +++ b/config.toml @@ -7,8 +7,7 @@ compile_sass = true # Whether to build a search index to be used later on by a JavaScript library build_search_index = false -generate_feed = true -feed_filename = "rss.xml" +generate_feed = false taxonomies = [ {name = "tags"}, @@ -18,8 +17,6 @@ taxonomies = [ # Whether to do syntax highlighting # Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola highlight_code = true -extra_syntaxes_and_themes = ["highlight_themes"] -highlight_theme = "rosepine" [extra] @@ -28,12 +25,6 @@ logo_text = "CherryKitten" menu_items = [ {name = "Home", url = "$BASE_URL"}, - - {name = "About me", url = "$BASE_URL/about"}, - - {name = "Blog", url = "$BASE_URL/blog"}, - - {name = "Contact", url = "$BASE_URL/contact"}, ] page_titles = "combined" diff --git a/content/home.md b/content/home.md new file mode 100644 index 0000000..d1a9cc1 --- /dev/null +++ b/content/home.md @@ -0,0 +1,27 @@ ++++ +title = "Hello there!" +template = "page.html" ++++ + +{{ image(src="/profile.jpeg", alt="Profile picture", +position="center", style="border-radius: 50%; height: 128px; width: 128px;") }} + +
+ +Hi, I'm Sammy. + +Welcome to my little website :3 + +
+ +```Rust +///I like to meow +fn main() { + loop { + println!("Meow!"); + } +} + + +// Honestly I just wanted to have some kind of code block somewhere to see how pretty the syntax highlighting is +``` diff --git a/highlight_themes/rosepine.tmTheme b/highlight_themes/rosepine.tmTheme deleted file mode 100644 index fc3479b..0000000 --- a/highlight_themes/rosepine.tmTheme +++ /dev/null @@ -1,301 +0,0 @@ - - - - - - - - - name - Rosé Pine - settings - - - settings - - background - #1F1D29 - caret - #FAEBD7 - foreground - #FFFFFF - invisibles - #3B3A32 - lineHighlight - #3E3D32 - selection - #FAEBD791 - - - - name - Comment - scope - comment - settings - - foreground - #403C58 - - - - name - String - scope - string - settings - - foreground - #F1CA93 - - - - name - Number - scope - constant.numeric - settings - - foreground - #C3A5E6 - - - - name - Built-in constant - scope - constant.language - settings - - foreground - #C3A5E6 - - - - name - User-defined constant - scope - constant.character, constant.other - settings - - foreground - #C3A5E6 - - - - name - Variable - scope - variable - settings - - fontStyle - - - - - name - Keyword - scope - keyword - settings - - foreground - #EA6F91 - - - - name - Storage - scope - storage - settings - - fontStyle - - foreground - #EA6F91 - - - - name - Storage type - scope - storage.type - settings - - fontStyle - italic - foreground - #9BCED7 - - - - name - Class name - scope - entity.name.class - settings - - fontStyle - bold - foreground - #34738E - - - - name - Inherited class - scope - entity.other.inherited-class - settings - - fontStyle - italic - foreground - #34738E - - - - name - Function name - scope - entity.name.function - settings - - fontStyle - - foreground - #34738E - - - - name - Function argument - scope - variable.parameter - settings - - fontStyle - italic - foreground - #F1CA93 - - - - name - Tag name - scope - entity.name.tag - settings - - fontStyle - - foreground - #EA6F91 - - - - name - Tag attribute - scope - entity.other.attribute-name - settings - - fontStyle - - foreground - #34738E - - - - name - Library function - scope - support.function - settings - - fontStyle - - foreground - #66D9EF - - - - name - Library constant - scope - support.constant - settings - - fontStyle - - foreground - #66D9EF - - - - name - Library class/type - scope - support.type, support.class - settings - - fontStyle - italic - foreground - #66D9EF - - - - name - Library variable - scope - support.other.variable - settings - - fontStyle - - - - - name - Invalid - scope - invalid - settings - - background - #EB5E57 - fontStyle - - foreground - #F8F8F0 - - - - name - Invalid deprecated - scope - invalid.deprecated - settings - - background - #BB96E6 - foreground - #F8F8F0 - - - - uuid - D8D5E82E-3D5B-46B5-B38E-8C841C21347D - colorSpaceName - sRGB - semanticClass - theme.dark.rose_pine - author - ThatOneCalculator - comment - soho vibes - - diff --git a/static/favicon.ico b/static/favicon.ico new file mode 100644 index 0000000..f261aef Binary files /dev/null and b/static/favicon.ico differ diff --git a/static/profile.jpeg b/static/profile.jpeg new file mode 100644 index 0000000..09f2e4d Binary files /dev/null and b/static/profile.jpeg differ