diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json deleted file mode 100644 index 893a422..0000000 --- a/.devcontainer/devcontainer.json +++ /dev/null @@ -1,22 +0,0 @@ -// For format details, see https://aka.ms/devcontainer.json. For config options, see the -// README at: https://github.com/devcontainers/templates/tree/main/src/go -{ - "name": "Go", - // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile - "image": "mcr.microsoft.com/devcontainers/go:1-1.21-bullseye" - - // Features to add to the dev container. More info: https://containers.dev/features. - // "features": {}, - - // Use 'forwardPorts' to make a list of ports inside the container available locally. - // "forwardPorts": [], - - // Use 'postCreateCommand' to run commands after the container is created. - // "postCreateCommand": "go version", - - // Configure tool-specific properties. - // "customizations": {}, - - // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. - // "remoteUser": "root" -} diff --git a/.github/workflows/hugo.yaml b/.github/workflows/hugo.yaml deleted file mode 100644 index 0ad96cd..0000000 --- a/.github/workflows/hugo.yaml +++ /dev/null @@ -1,79 +0,0 @@ -# Sample workflow for building and deploying a Hugo site to GitHub Pages -name: Deploy Hugo site to Pages - -on: - # Runs on pushes targeting the default branch - push: - branches: - - main - - # Allows you to run this workflow manually from the Actions tab - workflow_dispatch: - -# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages -permissions: - contents: read - pages: write - id-token: write - -# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. -# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. -concurrency: - group: "pages" - cancel-in-progress: false - -# Default to bash -defaults: - run: - shell: bash - -jobs: - # Build job - build: - runs-on: ubuntu-latest - env: - HUGO_VERSION: 0.121.0 - steps: - - name: Install Hugo CLI - run: | - wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.deb \ - && sudo dpkg -i ${{ runner.temp }}/hugo.deb - - name: Install Dart Sass - run: sudo snap install dart-sass - - name: Checkout - uses: actions/checkout@v4 - with: - submodules: recursive - fetch-depth: 0 - - name: Setup Pages - id: pages - uses: actions/configure-pages@v4 - - name: Install Node.js dependencies - run: "[[ -f package-lock.json || -f npm-shrinkwrap.json ]] && npm ci || true" - - name: Build with Hugo - env: - # For maximum backward compatibility with Hugo modules - HUGO_ENVIRONMENT: production - HUGO_ENV: production - run: | - hugo \ - --gc \ - --minify \ - --baseURL "${{ steps.pages.outputs.base_url }}/" - - name: Upload artifact - uses: actions/upload-pages-artifact@v2 - with: - path: ./public - - # Deployment job - deploy: - environment: - name: github-pages - url: ${{ steps.deployment.outputs.page_url }} - runs-on: ubuntu-latest - needs: build - steps: - - name: Deploy to GitHub Pages - id: deployment - uses: actions/deploy-pages@v3 - diff --git a/.gitmodules b/.gitmodules deleted file mode 100644 index ff46467..0000000 --- a/.gitmodules +++ /dev/null @@ -1,3 +0,0 @@ -[submodule "themes/hermit"] - path = themes/hermit - url = https://github.com/Track3/hermit.git diff --git a/.hugo_build.lock b/.hugo_build.lock deleted file mode 100644 index e69de29..0000000 diff --git a/archetypes/default.md b/archetypes/default.md deleted file mode 100644 index 00e77bd..0000000 --- a/archetypes/default.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -title: "{{ replace .Name "-" " " | title }}" -date: {{ .Date }} -draft: true ---- - diff --git a/assets/js/main.js b/assets/js/main.js deleted file mode 100644 index 8b13789..0000000 --- a/assets/js/main.js +++ /dev/null @@ -1 +0,0 @@ - diff --git a/assets/scss/_home.scss b/assets/scss/_home.scss deleted file mode 100644 index 3270635..0000000 --- a/assets/scss/_home.scss +++ /dev/null @@ -1,41 +0,0 @@ -@import 'variables'; - -#home-main { - display: flex; - flex-direction: column; - align-items: start; - justify-content: space-between; - height: 100vh; - - max-width: 720px; - margin: auto; - font-size: 1.5rem; - - @media (max-width: 768px) { - margin-left: 24px; - } -} - -#home-center { - display: flex; - flex-direction: column; - align-items: flex-start; - margin-top: 16vh; -} - - -#home-nav { - display: flex; - flex-direction: column; - - a { - color: $color-light-dark; - font-family: $default-font; - font-size: 40px; - font-style: normal; - font-weight: 400; - line-height: 150%; - text-decoration-line: underline; - } - -} diff --git a/assets/scss/_posts.scss b/assets/scss/_posts.scss deleted file mode 100644 index 0583c3a..0000000 --- a/assets/scss/_posts.scss +++ /dev/null @@ -1,140 +0,0 @@ -@import "variables"; - -#posts-body { - @include default-width; - - display: flex; - flex-direction: column; - justify-content: start; - - height: 100vh; - margin-bottom: 0; -} - -#posts-list { - display: flex; - flex-direction: column; -} - -#posts-header { - padding-top: 10vh; - - font-size: 20px; - font-style: normal; - font-weight: 400; - - a { - text-decoration: none; - color: #656565; - - &:hover { - text-decoration: underline; - color: #151515; - } - } -} - -#post-header { - padding-top: 10vh; - - a { - text-decoration: none; - color: #656565; - - &:hover { - text-decoration: underline; - color: #151515; - } - } -} - -#post-title { - font-size: 2.5em; - font-weight: 400; - margin-bottom: 8px; -} - -.post-meta { - font-size: 1.5em; - span { - color: #303030; - } -} - -.post-tags { - margin: 10px 0; - display: flex; - gap: 6px; - - .tag { - font-size: 0.9em; - padding: 3px 14px; - text-transform: lowercase; - border: 1px solid; - margin-bottom: 6px; - - a { - outline: none; - text-decoration: none; - color: #5C5C5C; - font-weight: 500; - } - } -} - -.featured-image img { - width: 100%; -} - -#posts-footer { - display: flex; - flex-direction: column; - flex-grow: 1; - justify-content: end; -} - -.post-item { - a { - color: $color-light-dark; - font-weight: 400; - line-height: 150%; - text-decoration-line: underline; - font-size: 2em; - } -} - -.post-content { - font-size: 1.3em; - color: $color-dark; - line-height: 1.4; - - h2 { - border-bottom: 1px solid rgba(71, 61, 139, 0.500); - } - - p { - text-align: justify; - a { - text-decoration-line: none; - text-decoration-style: solid; - text-decoration-color: darkslateblue; - outline-color: darkslateblue; - color: slateblue; - } - - img { - width: 100%; - } - } - -} - -.post-to-top-link { - text-decoration: none; - color: #656565; - - &:hover { - text-decoration: underline; - color: #151515; - } -} diff --git a/assets/scss/_syntax.scss b/assets/scss/_syntax.scss deleted file mode 100644 index 2838915..0000000 --- a/assets/scss/_syntax.scss +++ /dev/null @@ -1,86 +0,0 @@ -/* Background */ .bg { background-color: #ffffff; } -/* PreWrapper */ .chroma { background-color: #ffffff; padding: 16px; border-radius: 4px; border: 1px dashed grey; } -/* Other */ .chroma .x { } -/* Error */ .chroma .err { color: #a61717; background-color: #e3d2d2 } -/* CodeLine */ .chroma .cl { } -/* LineLink */ .chroma .lnlinks { outline: none; text-decoration: none; color: inherit } -/* LineTableTD */ .chroma .lntd { vertical-align: top; padding: 0; margin: 0; border: 0; } -/* LineTable */ .chroma .lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; } -/* LineHighlight */ .chroma .hl { background-color: #e5e5e5 } -/* LineNumbersTable */ .chroma .lnt { white-space: pre; -webkit-user-select: none; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f } -/* LineNumbers */ .chroma .ln { white-space: pre; -webkit-user-select: none; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f } -/* Line */ .chroma .line { display: flex; } -/* Keyword */ .chroma .k { color: #000000; font-weight: bold } -/* KeywordConstant */ .chroma .kc { color: #000000; font-weight: bold } -/* KeywordDeclaration */ .chroma .kd { color: #000000; font-weight: bold } -/* KeywordNamespace */ .chroma .kn { color: #000000; font-weight: bold } -/* KeywordPseudo */ .chroma .kp { color: #000000; font-weight: bold } -/* KeywordReserved */ .chroma .kr { color: #000000; font-weight: bold } -/* KeywordType */ .chroma .kt { color: #445588; font-weight: bold } -/* Name */ .chroma .n { } -/* NameAttribute */ .chroma .na { color: #008080 } -/* NameBuiltin */ .chroma .nb { color: #0086b3 } -/* NameBuiltinPseudo */ .chroma .bp { color: #999999 } -/* NameClass */ .chroma .nc { color: #445588; font-weight: bold } -/* NameConstant */ .chroma .no { color: #008080 } -/* NameDecorator */ .chroma .nd { color: #3c5d5d; font-weight: bold } -/* NameEntity */ .chroma .ni { color: #800080 } -/* NameException */ .chroma .ne { color: #990000; font-weight: bold } -/* NameFunction */ .chroma .nf { color: #990000; font-weight: bold } -/* NameFunctionMagic */ .chroma .fm { } -/* NameLabel */ .chroma .nl { color: #990000; font-weight: bold } -/* NameNamespace */ .chroma .nn { color: #555555 } -/* NameOther */ .chroma .nx { } -/* NameProperty */ .chroma .py { } -/* NameTag */ .chroma .nt { color: #000080 } -/* NameVariable */ .chroma .nv { color: #008080 } -/* NameVariableClass */ .chroma .vc { color: #008080 } -/* NameVariableGlobal */ .chroma .vg { color: #008080 } -/* NameVariableInstance */ .chroma .vi { color: #008080 } -/* NameVariableMagic */ .chroma .vm { } -/* Literal */ .chroma .l { } -/* LiteralDate */ .chroma .ld { } -/* LiteralString */ .chroma .s { color: #dd1144 } -/* LiteralStringAffix */ .chroma .sa { color: #dd1144 } -/* LiteralStringBacktick */ .chroma .sb { color: #dd1144 } -/* LiteralStringChar */ .chroma .sc { color: #dd1144 } -/* LiteralStringDelimiter */ .chroma .dl { color: #dd1144 } -/* LiteralStringDoc */ .chroma .sd { color: #dd1144 } -/* LiteralStringDouble */ .chroma .s2 { color: #dd1144 } -/* LiteralStringEscape */ .chroma .se { color: #dd1144 } -/* LiteralStringHeredoc */ .chroma .sh { color: #dd1144 } -/* LiteralStringInterpol */ .chroma .si { color: #dd1144 } -/* LiteralStringOther */ .chroma .sx { color: #dd1144 } -/* LiteralStringRegex */ .chroma .sr { color: #009926 } -/* LiteralStringSingle */ .chroma .s1 { color: #dd1144 } -/* LiteralStringSymbol */ .chroma .ss { color: #990073 } -/* LiteralNumber */ .chroma .m { color: #009999 } -/* LiteralNumberBin */ .chroma .mb { color: #009999 } -/* LiteralNumberFloat */ .chroma .mf { color: #009999 } -/* LiteralNumberHex */ .chroma .mh { color: #009999 } -/* LiteralNumberInteger */ .chroma .mi { color: #009999 } -/* LiteralNumberIntegerLong */ .chroma .il { color: #009999 } -/* LiteralNumberOct */ .chroma .mo { color: #009999 } -/* Operator */ .chroma .o { color: #000000; font-weight: bold } -/* OperatorWord */ .chroma .ow { color: #000000; font-weight: bold } -/* Punctuation */ .chroma .p { } -/* Comment */ .chroma .c { color: #999988; font-style: italic } -/* CommentHashbang */ .chroma .ch { color: #999988; font-style: italic } -/* CommentMultiline */ .chroma .cm { color: #999988; font-style: italic } -/* CommentSingle */ .chroma .c1 { color: #999988; font-style: italic } -/* CommentSpecial */ .chroma .cs { color: #999999; font-weight: bold; font-style: italic } -/* CommentPreproc */ .chroma .cp { color: #999999; font-weight: bold; font-style: italic } -/* CommentPreprocFile */ .chroma .cpf { color: #999999; font-weight: bold; font-style: italic } -/* Generic */ .chroma .g { } -/* GenericDeleted */ .chroma .gd { color: #000000; background-color: #ffdddd } -/* GenericEmph */ .chroma .ge { color: #000000; font-style: italic } -/* GenericError */ .chroma .gr { color: #aa0000 } -/* GenericHeading */ .chroma .gh { color: #999999 } -/* GenericInserted */ .chroma .gi { color: #000000; background-color: #ddffdd } -/* GenericOutput */ .chroma .go { color: #888888 } -/* GenericPrompt */ .chroma .gp { color: #555555 } -/* GenericStrong */ .chroma .gs { font-weight: bold } -/* GenericSubheading */ .chroma .gu { color: #aaaaaa } -/* GenericTraceback */ .chroma .gt { color: #aa0000 } -/* GenericUnderline */ .chroma .gl { text-decoration: underline } -/* TextWhitespace */ .chroma .w { color: #bbbbbb } diff --git a/assets/scss/_variables.scss b/assets/scss/_variables.scss deleted file mode 100644 index cbb93be..0000000 --- a/assets/scss/_variables.scss +++ /dev/null @@ -1,14 +0,0 @@ -$default-font: 'Inter', sans-serif; -$color-dark: #202020; -$color-medium-dark: #303030; -$color-grey: #5C5C5C; -$color-light-dark: #252525; - -@mixin default-width { - max-width: 720px; - margin: auto; - - @media (max-width: 768px) { - margin: 0px 24px; - } -} diff --git a/assets/scss/style.scss b/assets/scss/style.scss deleted file mode 100644 index 341636f..0000000 --- a/assets/scss/style.scss +++ /dev/null @@ -1,133 +0,0 @@ -@import "variables"; -@import "_syntax.scss"; -@import "home"; -@import "posts"; - -body { - font-family: $default-font; - line-height: 1.4; - background-color: #ebf4f3; - margin: 0; -} - -#header-title { - color: $color-dark; - font-family: $default-font; - font-style: normal; - font-weight: 500; - line-height: normal; -} - -.post-header { - margin-bottom: 40px; -} - -#site-footer { - width: 100%; - - p { - color: #5C5C5C; - font-family: Inter; - font-size: 20px; - font-style: normal; - font-weight: 300; - line-height: normal; - - display: flex; - gap: 8px; - justify-content: center; - } - - a { - color: #5C5C5C; - font-family: Inter; - font-size: 20px; - font-style: normal; - font-weight: 300; - line-height: normal; - - display: flex; - gap: 8px; - justify-content: center; - text-decoration: none; - - &:hover { - text-decoration: underline; - } - } -} - -.pagination { - display: flex; - /* Enable flexbox layout */ - list-style: none; - /* Remove default list styling */ - padding: 0; - /* Remove default padding */ - margin: 0; - /* Adjust margin as needed */ - justify-content: center; - /* Center the pagination items */ - align-items: center; - font-family: Inter; - - a { - text-decoration: none; - color: #252525; - } -} - -.pagination .page-item { - margin: 0; - /* Adjust margin between items as needed */ -} - -.pagination .page-link { - display: block; - /* Make the link fill the li element */ - padding: 5px 10px; - /* Adjust padding as needed */ - margin: 0 2px; - /* Space out the page links */ -} - -#site-footer { - width: 100%; - user-select: none; - - #copyright { - display: flex; - align-items: center; - justify-content: center; - } -} - -[aria-disabled="true"] { - text-decoration: none !important; -} - -.page-item { - &.active { - a { - text-decoration: none !important; - } - } -} - -blockquote { - border-left: .25em solid; - margin: 1em; - padding: 0 1em; - font-style: italic; - - cite { - font-style: normal; - display: flex; - justify-content: end; - gap: 6px; - - &::before { - content: "—— "; - } - } -} diff --git a/config.toml b/config.toml deleted file mode 100644 index eff586e..0000000 --- a/config.toml +++ /dev/null @@ -1,131 +0,0 @@ -baseURL = "https://log101.github.io" -languageCode = "tr" -defaultContentLanguage = "tr" -defaultContentLanguageInSubdir = true -title = "log101" -theme = "hermit" -# enableGitInfo = true -pygmentsCodefences = true -pygmentsUseClasses = true - -rssLimit = 10 # Maximum number of items in the RSS feed. -enableEmoji = true -paginate = 5 - -[markup] - [markup.highlight] - anchorLineNos = false - codeFences = true - guessSyntax = false - hl_Lines = '' - hl_inline = false - lineAnchors = '' - lineNoStart = 1 - lineNos = false - lineNumbersInTable = true - noClasses = true - style = 'github' - tabWidth = 4 - - [markup.goldmark] - [markup.goldmark.renderer] - unsafe = true - -staticDir = ['static'] -[languages] - [languages.tr] - disabled = false - contentDir = 'content/tr' - languageCode = 'tr' - languageDirection = 'ltr' - languageName = 'Türkçe' - title = 'Log101' - weight = 10 - staticDir = 'static' - - [languages.en] - disabled = false - contentDir = 'content/tr' - languageCode = 'en-US' - languageDirection = 'ltr' - languageName = 'English' - title = 'Log101' - weight = 20 - staticDir = 'static' - -[taxonomies] - tag = "tags" - -[params] - dateform = "2 January 2006" - dateformShort = "Jan 2" - dateformNum = "2006-01-02" - dateformNumTime = "2006-01-02 15:04 -0700" - - # Metadata mostly used in document's head - description = "log101'in sayfası" - themeColor = "#494f5c" - - homeSubtitle = "" - - # Toggling this option needs to rebuild SCSS, requires Hugo extended version - justifyContent = false # Set "text-align: justify" to `.content`. - - relatedPosts = false # Add a related content section to all single posts page - - code_copy_button = false - - # Add custom css - # customCSS = ["css/syntax.css"] - - [params.author] - name = "Furkan Erdem" - - # Social Icons - # Check https://github.com/Track3/hermit#social-icons for more info. - [[params.social]] - name = "github" - url = "https://github.com/" - - [[params.social]] - name = "linkedin" - url = "https://www.linkedin.com/in/furkan-erdem-506548218" - - -[menu] - - [[menu.main]] - identifier = 'posts' - name = "Yazılar 🚧" - url = "#/" - weight = 10 - - [[menu.main]] - identifier = 'projects' - name = "Projeler" - url = "https://github.com/log101?tab=repositories" - weight = 20 - - [[menu.main]] - name = "Github" - url = "https://github.com/log101" - weight = 30 - - [[menu.main]] - name = "CV" - url = "/furkan_erdem_cv.pdf" - weight = 40 - - [[menu.main]] - identifier = 'journals' - name = "Hususi" - url = "journals/" - weight = 45 - [menu.main.params] - id = "caution-menu" - - [[menu.main]] - identifier = 'running' - name = "Koşu 🚧" - url = "#/" - weight = 60 diff --git a/content/about.en.md b/content/about.en.md deleted file mode 100644 index e9bfc47..0000000 --- a/content/about.en.md +++ /dev/null @@ -1 +0,0 @@ -About me diff --git a/content/about.md b/content/about.md deleted file mode 100644 index 8bb5267..0000000 --- a/content/about.md +++ /dev/null @@ -1 +0,0 @@ -Hakkımda diff --git a/content/tr/journals/2021ramazan/index.md b/content/tr/journals/2021ramazan/index.md deleted file mode 100644 index bd8b12c..0000000 --- a/content/tr/journals/2021ramazan/index.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -title: "Bu Ramazan'ın Özeti" -date: 2021-12-05T04:40:02Z -draft: false -toc: false -featuredImg: japon.jpg -tags: - - günlük ---- - -Yaklaşık bir ay önce başlanılmış ramazan macerasının “yeniden” sonuna geldik. Yeniden, çünkü her sene çıkılan bir macera bu. Belki ondandır içimde derin bir hüzün yok, yalnızca hafif bir iç burukluğu, seneye tekrardan geleceğini biliyorum nasıl olsa. Tabii bir daha gelecek diye bu kısa zaman dilimini küçümsemiyorum, zira hipotezlerime göre “ramazan algısı” hesaplanırken o güne kadar geçirdiğin tüm ramazanlar hesaba katılıyor. - -Ne yaşarsanız yaşayın, tecrübeleri “iyi” veya “kötü” olarak değerlendirmek çok zordur. Çünkü yaşadığınız tüm olaylar size bir şey öğretir. Tabii “iyi” tecrübeleriniz çoksa buna mutlu veya başarılı hayat diyoruz, “kötü” tecrübelerinizin çok olması ise, düşe kalka ilerleyen bir hayatınız olduğu anlamına geliyor. Düştükten sonra kalkmayanları ve iyi-kötü bir hayata sahip olanları konunun dışında tutuyorum. Şimdi bu bakış açısıyla bakacak olursak, ramazan nasıl geçti? - -En başta çok hareketli geçmediğini söyleyebilirim. Çoğunlukla evimde, bilgisayarımın başındaydım. Yalnız günde 30, 40 dakika yürüyüş yapmaya gayret ettim, duyduğuma göre bu kan dolaşımına faydalıymış hatta neredeyse sağıklı bir kardiyovasküler sistem için zaruriymiş. Bu 30, 40 dakikayı saymazsak, çoğunlukla ders çalışarak, oyun oynayarak, anime izleyerek bitirdim bu ramazanı (yaklaşık 100 saat oyun oynadım ve 3 tane anime serisini bitirdim, ders çalışma süremin de yüksek olmasını umuyorum, detaylı hesaplamalara girişmeyeceğim *öhöm öhöm*). - -Manevi olarak gayet kurak bir dönemdi. İbadetimde diğer aylara nazaran -oruç tutmak dışında- bir fazlalık yoktu. Açıkçası bu üzücü bir gerçek, inşallah gelecek ramazanlarda durum değişir? - -Sosyal açıdan, arkadaşlarımla telefonda görüşmeyi saymazsak manevi hayatımdan bile daha kurak bir dönem oldu. Yani olmadı desem de olur herhalde. Bu da bulunduğumuz halin iktiza ettiği bir durum olsa gerek, çünkü geçmiş ramazanlarım böyle geçmemişti. Zaten okul vardı, arkadaşlar ile muhabbet sohbet, neyse işte… - -Hülasa, “iyiliği” “kötülüğü” bir yana, görünüşe göre bu ramazan oldukça sessiz, hareketsiz ve yalnız geçmiş. Aslında bu sonuç beni üzmeli ama o kadar uzun süredir böyle yaşıyorum ki şu an umurumda bile değil. Bakalım gelecek ramazanlar nasıl geçecek. - -Allah kabul etsin, daha nice ramazanlara. diff --git a/content/tr/journals/2021ramazan/japon.jpg b/content/tr/journals/2021ramazan/japon.jpg deleted file mode 100644 index a681867..0000000 Binary files a/content/tr/journals/2021ramazan/japon.jpg and /dev/null differ diff --git a/content/tr/journals/im22andfailed.md b/content/tr/journals/im22andfailed.md deleted file mode 100644 index 4f818c6..0000000 --- a/content/tr/journals/im22andfailed.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -title: "I'm 22 and I Failed" -date: 2021-09-18T04:15:04Z -draft: false -toc: false -tags: - - diary ---- - -Yeah, it's been 22 years living, 8 years coding. It was all fun at the beginning. I and friends were making cool flash animations--there was flash once, we even tried to make a shooter game with 3D graphics. Then I jumped into the world of coding. I was reading books, coding small things, eating popcorn while watching edX courses. I was constantly shifting my focus, different programming languages, different platforms, cool new technologies. Then I had to decide on a university. I thought: "Hey, I don't want to deal with introductory python courses, and stupid freshmen, I want to be the cool computer wiz without a degree!". And I choose an arts bachelor for fun and easy scholarship, I had good marks. - -I think this was my first mistake, I didn't know university was actually all about the environment, I found myself surrounded by people talking and interested in boring history, sociology, psychology stuff, and completely ignorant of computers. Actually, I made some friends, I even loved psychology and philosophy. But still, I was spending my time alone in the library coding and learning while my friends were preparing their fifth response paper on Metamorphoses. I felt alone. After a while university began to tease me because of my low grades. And it was psychologically disturbing. I tried to balance my academic life and computer passion but I failed. And I couldn't leave the school because I was in need of that scholarship they were giving me. 3 years passed with this unbalanced life. - -6 months ago I decided to leave the school and I moved to an easier no-scholarship state university. And I began thinking about my career as a software engineer. How am I going to find a job? I began scrolling down LinkedIn job postings and found out I should be able to do "one thing" well. I should've mastered Django, Rails, Android, etc. "Yeah, I can make that!" I said, they said, "No, you don't have a degree, the only thing you have is an ugly GitHub page with unfinished or empty repos, go away!". They were right in a way, all these years all I was doing was having fun, I wasn't prepared for a job. But now I didn't have money, a scholarship, or any plan to earn a living. Parents went ugly, they said I was a careless, stupid, ignorant boy. I know they are not right. But I didn't know what to do. Life seemed so boring, and meaningless. Wished I'd die. But then I pulled myself together and accepted the challenge. There is no dying, I'll work hard and I'll find a job, not just "a job", someplace where I can have fun working. I know the next 3-4 months won't be easy but I know I can do it. - -See you there! diff --git a/content/tr/journals/karar/index.md b/content/tr/journals/karar/index.md deleted file mode 100644 index 67ddf72..0000000 --- a/content/tr/journals/karar/index.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -title: "Karar" -date: 2021-05-25T04:19:40Z -draft: false -toc: false -featuredImg: "spiral.jpg" -tags: - - günlük ---- - -İnsan karar verirken aklını veya duygularını önceler. Yalnız bazı durumlarda ikisini de öncelemez. Yalnızca bir seçeneğin bulunduğu koşullarda, halde, psikolojide, çevrede verilebilecek en iyi karar olduğunu fark eder. Diğer seçenekleri yanlış yapmaz bu, hayır, mesele çoktan doğru/yanlış mevzusunu aşmıştır. İnsan düşündükçe fark eder ki, aklı başında olan için yanlış karar yoktur. Belki sonuçlarını yüklenemeyeceği kararlar vardır. - -Bendeniz de 1 haftalık tefekkürün ardından bir karara vardım. Bu süreçte bir sürü arkadaşımla konuştum, “çocukça”, “saçma” diyen oldu, “altından kalkamazsın” diyen oldu, “acaba şöyle mı yapsan?” diyen oldu, “sen bu kadar basit bir insansın işte, her işi yarım bırakırsın, senin gibileri çok gördük, rezil olacaksın, iki pezevenk, orospu için…” diyen oldu, birde “gönlünün sesini dinle bence” diyen oldu. Neticede herkes söyleyeceğini söyledi, karar verildi ve defter kapandı. - -Öncelikle verdiğim kararın aslında ne kadar ehemmiyetsiz olduğunu fark ettim, kendimi bir oyuncaktan farksız gördüm şu koca dünyada. Ardından hiç pişmanlık duymadığımı fark ettim, çünkü neredeyse hiç fedakarlıkta bulunmamıştım hayatımda. Pişmanlık duymak istedim, bir karar vermek, pişman olmak ve hatamı telafiye çalışmak. Bunu güçlü bir motivasyon olduğunu sezdim. Ayrıca anladım ki bu umursamazlığım, dertsizliğim, “başkalarının kararlarını” vermemle alakalıymış. Komşu komşunun eşeğini türkü çığırarak ararmış ya, benzer bir durum. Benimsemedikçe eşya kıymetsiz… - -Ve evet, sonunda bir karar verdim, pişman olmak veya olmamak umrumda değil ama pişman olmamak için elimden geleni yapacağım. - -Gelecek geliyor... diff --git a/content/tr/journals/karar/spiral.jpg b/content/tr/journals/karar/spiral.jpg deleted file mode 100644 index c9e8d41..0000000 Binary files a/content/tr/journals/karar/spiral.jpg and /dev/null differ diff --git a/content/tr/journals/relife/index.md b/content/tr/journals/relife/index.md deleted file mode 100644 index 7915a03..0000000 --- a/content/tr/journals/relife/index.md +++ /dev/null @@ -1,53 +0,0 @@ ---- -title: "Relife" -date: 2023-12-11T04:43:49Z -draft: false -toc: false -featuredImg: relife1.png -tags: - - anime ---- - - -## Genel Bilgiler - -- Yayın Yılı: 2016 -- Stüdyo: TMS -- Bölüm: 13 -- Tür: Hayattan Kesitler, Romantik, Okul - -## İnceleme - -Kaizaki Arata, bir baltaya sap olamamış, travmatik yetişkin hayatına uyum sağlayamamış, yıkık, mutsuz ve yalnız bir “neet”tir. Bir gece vakti, yarı uyanık yarı sarhoş, sokakta sendeleye sendeleye yürürken “ReLife” Labaratuvarları’nın bir çalışanı tarafından durdurulur ve kendisine oldukça tuhaf bir teklif sunulur: bir seneliğine liseye geri dönmek! - -Ayağına gelen bu fırsatı geri tepmek istemeyen Kaizaki, teklifi kabul eder ve kendisi henüz bilmesede hayatını tümden değiştirecek bir serüvene adımını atmış olur. - -Hikayenin ana teması, Kaizaki’nin bu süreçte edindiği arkadaşları ve onlarla maceraları. Tabii 27 yaşındaki bir adamın alınıp da liseye konulması pek çok komikliklere, tuhaflıklara yol açıyor. Zamanla kendini sınıfın sosyal ilişkiler danışmanı olarak bulan Kaizaki’nin sevenlerin arasını yapmasına, küskünleri barıştırmasına ve ilginç bir şekilde “ReLife” öncesi hayatının travmalarını da atlatmasına şahit oluyoruz. - -![Kaizaki Arata](relife.png) - -Serinin bu temayı oldukça başarılı bir şekilde işlediğini söylemek mümkün. Karakterlerimizin neredeyse tümü orijinal tipler, hepsinin değişik arkaplanları, karakterleri, mizaçları var. Bunları aynı sınıfa koyduğunuzda ortaya çıkan sosyal hayat da haliyle oldukça renkli oluyor. Yazarımız bunu güzel kurgulamış. Her birinin kendilerini aşma çabalarını seyretmek oldukça keyifli. Burada eleştirilebilecek bir nokta, zaman zaman bu yan karakterlerin üzerinde fazlaca durulması ve bunun ana karakterin hikayesini gölgede bırakması. - -> İnsanlarla geçinmenin mutlak bir kuralı yoktur, herkesin farklı beklentileri vardır. -> -> Kaizaki Arata - -Bunun dışında işlenen yan temalar da var. Mesela iş hayatına, bu hayatın ne kadar acımasız ve çetin olduğuna, insanların nasıl birbirlerinin kuyusunu kazdığına sık sık göndermeler yapılıyor. Zaten ileride de Kaizaki’nin bu hayattan çok çektiğini öğreniyoruz. - -Ayrıca hikayeye bir kaç adım geriden bakınca, tüm olanların aslında bir lise hayatı betimlemesi olduğunu fark ediyoruz. Sanki satır arasında bize şu söyleniyor: Lise, insanın kendini keşfettiği, sevmeyi ve arkadaş olmayı öğrendiği yerdir. Bu açıdan liseli okurlarımızın seriyi ayrıca beğeneceğini düşünüyorum. - -![Hishiro Chizuru](relife3.png) - -Hikayenin romantizmi seviyeli bir şekilde işlemesi oldukça sevindirici, öbür türlüsü ana temaya da zıt düşerdi doğrusu. Ama hikayede rahatsız edici bulduğum noktalar da yok değil. Mesela hikayenin sonu, hikayenin en önemli dinamiklerinden birini doğrudan yok sayıyor (spoiler vermek istemiyorum), bu tutarsızlık rahatsız edici. Daha sonra Arata’nın arkaplanı, yani ReLife öncesi hayatı nedense kulağa pek gerçekçi gelmiyor, biraz dramatize edilmiş gibi. Son olarak da şu Nabunaga ile Akira ikilisi var ki, “Niye oradalar?” diye soruyor insan. Nabunaga yine anlaşılabilir, babacan, sevecen bir karakter ama Akira, ölçüsüz, sert ve aşırı koruyucu tavırlarıyla "olmasa da olurmuş" tarzda bir karakter, arkadaşlarının yanında sırıtıyor açıkçası. Sasuke'nin seslendirmeni bile kurtaramamış kendisini. - -> Ne kadar güzel vakit geçirirsek, ayrıldığımızda o kadar üzüleceğiz. -> -> Hishiro Chizuru - -Sanatsal açıdan çok dikkat çekici bir tarafı yok ReLife’ın. Fakat pek çok sahne “chibification” dedikleri, dilimize “sevimlileştirme” olarak çevirebileceğimiz bir çizim tarzı ile zenginleştirilmiş (altta bir örneği var). Bunun dışında ortalama bir çizim kalitesine sahip. Serinin müziklerinde enstrüman olarak daha ziyade piyano tercih edilmiş, ayrıca neredeyse tüm bitiş müzikleri birbirinden farklı, bu da dikkat çekici bir unsur. - -Özetle ReLife bir lise hayatı draması. Neşeli, hüzünlü anlarıyla, tartışmaları, barışmalarıyla bize keyifli ve eğlenceli bir 12 bölüm vaadediyor. Okul animelerini seviyorsanız, biraz duygulanmak, biraz gülmek, biraz da dinlenmek istiyorsanız izlemeniz tavsiye olunur! - -![Kaizaki Arata](relife2.png) - -Yazımı okuduğunuz için teşekkür ederim! diff --git a/content/tr/journals/relife/relife.png b/content/tr/journals/relife/relife.png deleted file mode 100644 index efecf7e..0000000 Binary files a/content/tr/journals/relife/relife.png and /dev/null differ diff --git a/content/tr/journals/relife/relife1.png b/content/tr/journals/relife/relife1.png deleted file mode 100644 index 0cd5d11..0000000 Binary files a/content/tr/journals/relife/relife1.png and /dev/null differ diff --git a/content/tr/journals/relife/relife2.png b/content/tr/journals/relife/relife2.png deleted file mode 100644 index e5db81e..0000000 Binary files a/content/tr/journals/relife/relife2.png and /dev/null differ diff --git a/content/tr/journals/relife/relife3.png b/content/tr/journals/relife/relife3.png deleted file mode 100644 index 3e17862..0000000 Binary files a/content/tr/journals/relife/relife3.png and /dev/null differ diff --git a/i18n/en.yaml b/i18n/en.yaml deleted file mode 100644 index 8586062..0000000 --- a/i18n/en.yaml +++ /dev/null @@ -1,18 +0,0 @@ -- id: about - translation: "About" -- id: posts - translation: "Posts 🚧" -- id: journals - translation: "Personal" -- id: projects - translation: "Projects" -- id: stories - translation: "Stories 🚧" -- id: running - translation: "Running 🚧" -- id: backTitle - translation: "🞀 Back To Home" -- id: tags - translation: "Tags" -- id: back-to-posts - translation: "🞀 Back to Posts" diff --git a/i18n/tr.yaml b/i18n/tr.yaml deleted file mode 100644 index 65b244e..0000000 --- a/i18n/tr.yaml +++ /dev/null @@ -1,10 +0,0 @@ -- id: backTitle - translation: "🞀 Anasayfaya Dön" -- id: posts - translation: "Yazılar 🚧" -- id: tags - translation: "Etiketler" -- id: back-to-posts - translation: "🞀 Yazılara Dön" -- id: journals - translation: "Hususi" diff --git a/layouts/404.html b/layouts/404.html deleted file mode 100644 index 38a201d..0000000 --- a/layouts/404.html +++ /dev/null @@ -1,15 +0,0 @@ -{{ define "main" }} -
-

- 404-lighthouse -

- -
-{{ end }} diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html deleted file mode 100644 index e7e0191..0000000 --- a/layouts/_default/baseof.html +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - {{- with .Site.Params.themeColor }} - - - {{- end }} - {{- partial "structured-data.html" . }} - {{- partial "favicons.html" }} - {{.Title}} - {{ range .AlternativeOutputFormats -}} - {{ printf `` .Rel .MediaType.Type .Permalink $.Title | safeHTML }} - {{ end -}} - {{ $style := resources.Get "scss/style.scss" | resources.ExecuteAsTemplate "css/style.css" . | toCSS | minify | fingerprint -}} - - {{- block "head" . -}}{{- end }} - {{- range .Site.Params.customCSS }} - - {{- end }} - {{ if .IsTranslated }} - {{ range .Translations }} - - {{ end }} - {{ end }} - {{- if templates.Exists "partials/extra-head.html" -}} - {{ partial "extra-head.html" . }} - {{- end }} - - - - {{ block "header" . -}}{{ end -}} - {{ block "main" . -}}{{ end -}} - {{ block "footer" . -}}{{ end }} - - - diff --git a/layouts/_default/list.html b/layouts/_default/list.html deleted file mode 100644 index d4216bf..0000000 --- a/layouts/_default/list.html +++ /dev/null @@ -1,29 +0,0 @@ -{{ define "header" }} -{{ partial "header.html" . }} -{{ end }} - -{{ define "main" }} -
- {{- if .Content }} -
- {{ .Content }} -
- {{- end }} - {{ range (.Paginate .Pages.ByPublishDate ).Pages }} -
- -
- {{ end }} -
-{{ end }} - -{{ define "footer" }} -{{ partial "pagination.html" . }} -{{ partial "footer.html" . }} -{{ end }} diff --git a/layouts/_default/section.html b/layouts/_default/section.html deleted file mode 100644 index 83bf4b7..0000000 --- a/layouts/_default/section.html +++ /dev/null @@ -1,7 +0,0 @@ -

{{ .Title }}

-

{{ .Summary }}

-
- {{ range .Pages }} - {{ .Render "li" }} - {{ end }} -
diff --git a/layouts/_default/single.html b/layouts/_default/single.html deleted file mode 100644 index 9ba7177..0000000 --- a/layouts/_default/single.html +++ /dev/null @@ -1,34 +0,0 @@ -{{ define "head" }} - {{ if .Params.featuredImg -}} - - {{- else if .Params.images -}} - {{- range first 1 .Params.images -}} - - {{- end -}} - {{- end -}} -{{ end }} - -{{ define "header" }} -{{ partial "header.html" . }} -{{ end }} - -{{ define "main" }} - {{- if (or .Params.images .Params.featuredImg) }} -
- {{- end }} -
-

{{ .Title }}

-
- {{ .Content | replaceRE "()" `${1}${3}` | safeHTML }} -
- {{- if .Params.comments }} -
- {{ partial "comments.html" . }} -
- {{- end }} -
-{{ end }} - -{{ define "footer" }} -{{ partialCached "footer.html" . }} -{{ end }} diff --git a/layouts/index.html b/layouts/index.html deleted file mode 100644 index 5c9bc7c..0000000 --- a/layouts/index.html +++ /dev/null @@ -1,28 +0,0 @@ -{{ define "main" }} -
-
-

{{ .Site.Title }}

- -
- -
-{{ end }} - -{{ define "footer" }} -{{ with resources.Get "js/main.js" }} -{{ if hugo.IsDevelopment }} -{{ with . | js.Build }} - -{{ end }} -{{ else }} -{{ $opts := dict "minify" true }} -{{ with . | js.Build $opts | fingerprint }} - -{{ end }} -{{ end }} -{{ end }} -{{ end }} diff --git a/layouts/journals/baseof.html b/layouts/journals/baseof.html deleted file mode 100644 index c2a914c..0000000 --- a/layouts/journals/baseof.html +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - {{- with .Site.Params.themeColor }} - - - {{- end }} - {{- partial "structured-data.html" . }} - {{- partial "favicons.html" }} - {{.Title}} - {{ range .AlternativeOutputFormats -}} - {{ printf `` .Rel .MediaType.Type .Permalink $.Title | safeHTML }} - {{ end -}} - {{ $style := resources.Get "scss/style.scss" | resources.ExecuteAsTemplate "css/style.css" . | toCSS | minify | fingerprint -}} - - {{- block "head" . -}}{{- end }} - {{- range .Site.Params.customCSS }} - - {{- end }} - {{ if .IsTranslated }} - {{ range .Translations }} - - {{ end }} - {{ end }} - {{- if templates.Exists "partials/extra-head.html" -}} - {{ partial "extra-head.html" . }} - {{- end }} - - - - {{ block "header" . -}}{{ end -}} - {{ block "main" . -}}{{ end -}} - {{ block "footer" . -}}{{ end }} - - - diff --git a/layouts/journals/list.html b/layouts/journals/list.html deleted file mode 100644 index 71c76eb..0000000 --- a/layouts/journals/list.html +++ /dev/null @@ -1,27 +0,0 @@ -{{ define "header" }} -{{ partial "header.html" . }} -{{ end }} - -{{ define "main" }} -
- {{- if .Content }} -
- {{ .Content }} -
- {{- end }} - {{ range (.Paginate .Pages.ByPublishDate ).Pages }} -

- - {{.Title}} - -

- {{ end }} -
-{{ end }} - -{{ define "footer" }} - -{{ end }} diff --git a/layouts/journals/rss.xml b/layouts/journals/rss.xml deleted file mode 100644 index 8db9f49..0000000 --- a/layouts/journals/rss.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - {{ if eq .Title .Site.Title }}{{ .Site.Title }}{{ else }}{{ with .Title }}{{.}} on {{ end }}{{ .Site.Title }}{{ end }} - {{ .Permalink }} - Recent content {{ if ne .Title .Site.Title }}{{ with .Title }}in {{.}} {{ end }}{{ end }}on {{ .Site.Title }} - Hugo -- gohugo.io{{ with .Site.LanguageCode }} - {{.}}{{end}}{{ with .Site.Author.email }} - {{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}{{end}}{{ with .Site.Author.email }} - {{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}{{end}}{{ with .Site.Copyright }} - {{.}}{{end}}{{ if not .Date.IsZero }} - {{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}{{ end }} - {{ with .OutputFormats.Get "RSS" -}} - {{ printf "" .Permalink .MediaType | safeHTML }} - {{ end -}} - {{ range .Pages }} - - {{ .Title }} - {{ .Permalink }} - {{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }} - {{ with .Site.Author.email }}{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}{{end}} - {{ .Permalink }} - {{ .Summary | html }} - {{ printf `` .Content | safeHTML }} - - {{ end }} - - diff --git a/layouts/journals/single.html b/layouts/journals/single.html deleted file mode 100644 index 9c7bb60..0000000 --- a/layouts/journals/single.html +++ /dev/null @@ -1,38 +0,0 @@ -{{ define "header" }} -{{ partial "post/header.html" . }} -{{ end }} - -{{ define "main" }} -
-
-
- {{- with .Params.tags }} - - {{- end }} -
- - {{- if (or .Params.images .Params.featuredImg) }} - - {{- end }} - -
- {{ .Content | safeHTML }} -
- {{- if .Site.Params.relatedPosts }} - {{- partial "related-posts.html" . -}} - {{- end }} -
- ⮝ Başa dön -
-
-{{ end }} - -{{ define "footer" }} -{{ partialCached "footer.html" . }} -{{ end }} diff --git a/layouts/partials/comments.html b/layouts/partials/comments.html deleted file mode 100644 index b17632a..0000000 --- a/layouts/partials/comments.html +++ /dev/null @@ -1,3 +0,0 @@ -{{- if .Site.DisqusShortname }} -{{ template "_internal/disqus.html" . }} -{{- end }} diff --git a/layouts/partials/extra-head.html b/layouts/partials/extra-head.html deleted file mode 100644 index 9c38d15..0000000 --- a/layouts/partials/extra-head.html +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/layouts/partials/favicons.html b/layouts/partials/favicons.html deleted file mode 100644 index 27f5226..0000000 --- a/layouts/partials/favicons.html +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html deleted file mode 100644 index 77f2cd5..0000000 --- a/layouts/partials/footer.html +++ /dev/null @@ -1,15 +0,0 @@ - diff --git a/layouts/partials/header.html b/layouts/partials/header.html deleted file mode 100644 index 6a238f8..0000000 --- a/layouts/partials/header.html +++ /dev/null @@ -1,4 +0,0 @@ -
- {{ i18n "backTitle" | safeHTML }} -

{{ i18n ( lower .Title ) }}

-
diff --git a/layouts/partials/language-nav.html b/layouts/partials/language-nav.html deleted file mode 100644 index 1875dc4..0000000 --- a/layouts/partials/language-nav.html +++ /dev/null @@ -1,9 +0,0 @@ -
- {{ if .IsTranslated }} - - {{ end}} -
diff --git a/layouts/partials/menu.html b/layouts/partials/menu.html deleted file mode 100644 index 8005ac5..0000000 --- a/layouts/partials/menu.html +++ /dev/null @@ -1,16 +0,0 @@ -{{- range .Site.Menus.main }} -{{- if .HasChildren }} -{{ or (T .Identifier) .Name | safeHTML }} - - {{- range .Children }} - {{ or (T .Identifier) .Name | - safeHTML }} - {{- end }} - -{{- else }} -{{ or (T - .Identifier) .Name | - safeHTML }} -{{ .Post }} -{{- end }} -{{- end }} diff --git a/layouts/partials/pagination.html b/layouts/partials/pagination.html deleted file mode 100644 index 4157ec3..0000000 --- a/layouts/partials/pagination.html +++ /dev/null @@ -1,131 +0,0 @@ -{{- $validFormats := slice "default" "terse" }} - -{{- $msg1 := "When passing a map to the internal pagination template, one of the elements must be named 'page', and it must be set to the context of the current page." }} -{{- $msg2 := "The 'format' specified in the map passed to the internal pagination template is invalid. Valid choices are: %s." }} - -{{- $page := . }} -{{- $format := "default" }} - -{{- if reflect.IsMap . }} - {{- with .page }} - {{- $page = . }} - {{- else }} - {{- errorf $msg1 }} - {{- end }} - {{- with .format }} - {{- $format = lower . }} - {{- end }} -{{- end }} - -{{- if in $validFormats $format }} - {{- if gt $page.Paginator.TotalPages 1 }} - - {{- end }} -{{- else }} - {{- errorf $msg2 (delimit $validFormats ", ") }} -{{- end -}} - -{{/* Format: default -{{/* --------------------------------------------------------------------- */}} -{{- define "partials/inline/pagination/default" }} - {{- with .Paginator }} - {{- $currentPageNumber := .PageNumber }} - - {{- with .Prev }} -
  • - -
  • - {{- else }} -
  • - -
  • - {{- end }} - - {{- $slots := 5 }} - {{- $start := math.Max 1 (sub .PageNumber (math.Floor (div $slots 2))) }} - {{- $end := math.Min .TotalPages (sub (add $start $slots) 1) }} - {{- if lt (add (sub $end $start) 1) $slots }} - {{- $start = math.Max 1 (add (sub $end $slots) 1) }} - {{- end }} - - {{- range $k := seq $start $end }} - {{- if eq $.Paginator.PageNumber $k }} -
  • - {{ $k }} -
  • - {{- else }} -
  • - {{ $k }} -
  • - {{- end }} - {{- end }} - - {{- with .Next }} -
  • - -
  • - {{- else }} -
  • - -
  • - {{- end }} - - {{- end }} -{{- end -}} - -{{/* Format: terse -{{/* --------------------------------------------------------------------- */}} -{{- define "partials/inline/pagination/terse" }} - {{- with .Paginator }} - {{- $currentPageNumber := .PageNumber }} - - {{- with .First }} - {{- if ne $currentPageNumber .PageNumber }} -
  • - -
  • - {{- end }} - {{- end }} - - {{- with .Prev }} -
  • - -
  • - {{- end }} - - {{- $slots := 3 }} - {{- $start := math.Max 1 (sub .PageNumber (math.Floor (div $slots 2))) }} - {{- $end := math.Min .TotalPages (sub (add $start $slots) 1) }} - {{- if lt (add (sub $end $start) 1) $slots }} - {{- $start = math.Max 1 (add (sub $end $slots) 1) }} - {{- end }} - - {{- range $k := seq $start $end }} - {{- if eq $.Paginator.PageNumber $k }} -
  • - {{ $k }} -
  • - {{- else }} -
  • - {{ $k }} -
  • - {{- end }} - {{- end }} - - {{- with .Next }} -
  • - -
  • - {{- end }} - - {{- with .Last }} - {{- if ne $currentPageNumber .PageNumber }} -
  • - -
  • - {{- end }} - {{- end }} - {{- end }} -{{- end -}} diff --git a/layouts/partials/post/header.html b/layouts/partials/post/header.html deleted file mode 100644 index e389b7f..0000000 --- a/layouts/partials/post/header.html +++ /dev/null @@ -1,6 +0,0 @@ -
    - {{ $link := "posts/" }} - 🞀 {{ i18n .Section | safeHTML }} -

    {{ .Title }}

    -
    {{ time.Format .Site.Params.dateform .Date }}
    -
    diff --git a/layouts/partials/related-posts.html b/layouts/partials/related-posts.html deleted file mode 100644 index d533bfd..0000000 --- a/layouts/partials/related-posts.html +++ /dev/null @@ -1,11 +0,0 @@ -{{- $related := .Site.RegularPages.Related . | first 5 }} -{{ with $related }} - -{{ end -}} diff --git a/layouts/partials/social-icons.html b/layouts/partials/social-icons.html deleted file mode 100644 index b89f265..0000000 --- a/layouts/partials/social-icons.html +++ /dev/null @@ -1,3 +0,0 @@ -{{ range . -}} -{{ partial "svg.html" . }} -{{- end -}} diff --git a/layouts/partials/structured-data.html b/layouts/partials/structured-data.html deleted file mode 100644 index 4bfb909..0000000 --- a/layouts/partials/structured-data.html +++ /dev/null @@ -1,6 +0,0 @@ -{{/* We use some Hugo built-in templates, you can find their source here: */}} -{{/* https://github.com/gohugoio/hugo/tree/master/tpl/tplimpl/embedded/templates */}} - -{{- template "_internal/schema.html" . }} -{{- template "_internal/opengraph.html" . }} -{{- template "_internal/twitter_cards.html" . }} diff --git a/layouts/partials/svg.html b/layouts/partials/svg.html deleted file mode 100644 index adc8f87..0000000 --- a/layouts/partials/svg.html +++ /dev/null @@ -1,47 +0,0 @@ -{{- if (eq .name "codepen") -}} - -{{- else if (eq .name "facebook") -}} - -{{- else if (eq .name "github") -}} - -{{- else if (eq .name "gitlab") -}} - -{{- else if (eq .name "instagram") -}} - -{{- else if (eq .name "linkedin") -}} - -{{- else if (eq .name "slack") -}} - -{{- else if (eq .name "stackoverflow") -}} - -{{- else if (eq .name "telegram") -}} - -{{- else if (eq .name "twitch") -}} - -{{- else if (eq .name "twitter") -}} - -{{- else if (eq .name "youtube") -}} - -{{- else if (eq .name "email") -}} - -{{- else if (eq .name "dribbble") -}} - -{{- else if (eq .name "behance") -}} - -{{- else if (eq .name "freepik") -}} - -{{- else if (eq .name "adobestock") -}} - -{{- else if (eq .name "shutterstock") -}} - -{{- else if (eq .name "123rf") -}} - -{{- else if (eq .name "dreamstime") -}} - -{{- else if (eq .name "paypal") -}} - -{{- else if (eq .name "qq") -}} - -{{- else -}} - -{{- end -}} diff --git a/layouts/posts/baseof.html b/layouts/posts/baseof.html deleted file mode 100644 index c2a914c..0000000 --- a/layouts/posts/baseof.html +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - {{- with .Site.Params.themeColor }} - - - {{- end }} - {{- partial "structured-data.html" . }} - {{- partial "favicons.html" }} - {{.Title}} - {{ range .AlternativeOutputFormats -}} - {{ printf `` .Rel .MediaType.Type .Permalink $.Title | safeHTML }} - {{ end -}} - {{ $style := resources.Get "scss/style.scss" | resources.ExecuteAsTemplate "css/style.css" . | toCSS | minify | fingerprint -}} - - {{- block "head" . -}}{{- end }} - {{- range .Site.Params.customCSS }} - - {{- end }} - {{ if .IsTranslated }} - {{ range .Translations }} - - {{ end }} - {{ end }} - {{- if templates.Exists "partials/extra-head.html" -}} - {{ partial "extra-head.html" . }} - {{- end }} - - - - {{ block "header" . -}}{{ end -}} - {{ block "main" . -}}{{ end -}} - {{ block "footer" . -}}{{ end }} - - - diff --git a/layouts/posts/list.html b/layouts/posts/list.html deleted file mode 100644 index 71c76eb..0000000 --- a/layouts/posts/list.html +++ /dev/null @@ -1,27 +0,0 @@ -{{ define "header" }} -{{ partial "header.html" . }} -{{ end }} - -{{ define "main" }} -
    - {{- if .Content }} -
    - {{ .Content }} -
    - {{- end }} - {{ range (.Paginate .Pages.ByPublishDate ).Pages }} -

    - - {{.Title}} - -

    - {{ end }} -
    -{{ end }} - -{{ define "footer" }} - -{{ end }} diff --git a/layouts/posts/rss.xml b/layouts/posts/rss.xml deleted file mode 100644 index 8db9f49..0000000 --- a/layouts/posts/rss.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - {{ if eq .Title .Site.Title }}{{ .Site.Title }}{{ else }}{{ with .Title }}{{.}} on {{ end }}{{ .Site.Title }}{{ end }} - {{ .Permalink }} - Recent content {{ if ne .Title .Site.Title }}{{ with .Title }}in {{.}} {{ end }}{{ end }}on {{ .Site.Title }} - Hugo -- gohugo.io{{ with .Site.LanguageCode }} - {{.}}{{end}}{{ with .Site.Author.email }} - {{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}{{end}}{{ with .Site.Author.email }} - {{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}{{end}}{{ with .Site.Copyright }} - {{.}}{{end}}{{ if not .Date.IsZero }} - {{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}{{ end }} - {{ with .OutputFormats.Get "RSS" -}} - {{ printf "" .Permalink .MediaType | safeHTML }} - {{ end -}} - {{ range .Pages }} - - {{ .Title }} - {{ .Permalink }} - {{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }} - {{ with .Site.Author.email }}{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}{{end}} - {{ .Permalink }} - {{ .Summary | html }} - {{ printf `` .Content | safeHTML }} - - {{ end }} - - diff --git a/layouts/posts/single.html b/layouts/posts/single.html deleted file mode 100644 index 9c7bb60..0000000 --- a/layouts/posts/single.html +++ /dev/null @@ -1,38 +0,0 @@ -{{ define "header" }} -{{ partial "post/header.html" . }} -{{ end }} - -{{ define "main" }} -
    -
    -
    - {{- with .Params.tags }} - - {{- end }} -
    - - {{- if (or .Params.images .Params.featuredImg) }} - - {{- end }} - -
    - {{ .Content | safeHTML }} -
    - {{- if .Site.Params.relatedPosts }} - {{- partial "related-posts.html" . -}} - {{- end }} -
    - ⮝ Başa dön -
    -
    -{{ end }} - -{{ define "footer" }} -{{ partialCached "footer.html" . }} -{{ end }} diff --git a/public/404.html b/public/404.html deleted file mode 100644 index f753dd0..0000000 --- a/public/404.html +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - 404 Page not found - - - - - -
    -

    - 404-lighthouse -

    - -
    - - - - - - - - diff --git a/public/android-chrome-192x192.png b/public/android-chrome-192x192.png deleted file mode 100644 index ead4502..0000000 Binary files a/public/android-chrome-192x192.png and /dev/null differ diff --git a/public/android-chrome-384x384.png b/public/android-chrome-384x384.png deleted file mode 100644 index 5c0c07d..0000000 Binary files a/public/android-chrome-384x384.png and /dev/null differ diff --git a/public/apple-touch-icon.png b/public/apple-touch-icon.png deleted file mode 100644 index cbe7d8d..0000000 Binary files a/public/apple-touch-icon.png and /dev/null differ diff --git a/public/browserconfig.xml b/public/browserconfig.xml deleted file mode 100644 index 5aecc91..0000000 --- a/public/browserconfig.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - #00aba9 - - - diff --git a/public/css/style.min.e609a74a3408dd22bcf5c1ccee32f46f94cc9340fcd0db09005e5be27f1f404a.css b/public/css/style.min.e609a74a3408dd22bcf5c1ccee32f46f94cc9340fcd0db09005e5be27f1f404a.css deleted file mode 100644 index 1e31105..0000000 --- a/public/css/style.min.e609a74a3408dd22bcf5c1ccee32f46f94cc9340fcd0db09005e5be27f1f404a.css +++ /dev/null @@ -1 +0,0 @@ -#home-subtitle{color:red} \ No newline at end of file diff --git a/public/favicon-16x16.png b/public/favicon-16x16.png deleted file mode 100644 index 4ad4d17..0000000 Binary files a/public/favicon-16x16.png and /dev/null differ diff --git a/public/favicon-32x32.png b/public/favicon-32x32.png deleted file mode 100644 index 356b180..0000000 Binary files a/public/favicon-32x32.png and /dev/null differ diff --git a/public/favicon.ico b/public/favicon.ico deleted file mode 100644 index 4ea0c8d..0000000 Binary files a/public/favicon.ico and /dev/null differ diff --git a/public/index.html b/public/index.html deleted file mode 100644 index e10dfaf..0000000 --- a/public/index.html +++ /dev/null @@ -1,64 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - log101 - - - - - - - -
    -
    -

    log101

    -

    "Orada, soğuk ve mütemadiyen dönen yaşlı başlı yıldızlar, önce israillenmiş sonra pislik içinde bırakılmış gezegenler, Kadimler mirası kuyruklu gök cisimleri vardı; birbirlerinden bağımız görünseler de modellenmesi neredeyse imkansız bir örgü içerisinde…"

    -
    - -
    - -
    - -
    - - - - - - - - diff --git a/public/index.xml b/public/index.xml deleted file mode 100644 index 894138b..0000000 --- a/public/index.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - log101 - https://log101.github.io/ - Recent content on log101 - Hugo -- gohugo.io - en-us - - diff --git a/public/js/bundle.min.4a9a0ac3d2217822c7865b4161e6c2a71de1d70492264337755427898dd718f6.js b/public/js/bundle.min.4a9a0ac3d2217822c7865b4161e6c2a71de1d70492264337755427898dd718f6.js deleted file mode 100644 index 7137f68..0000000 --- a/public/js/bundle.min.4a9a0ac3d2217822c7865b4161e6c2a71de1d70492264337755427898dd718f6.js +++ /dev/null @@ -1,13 +0,0 @@ -const throttle=(callback,limit)=>{let timeoutHandler=null;return()=>{if(timeoutHandler==null){timeoutHandler=setTimeout(()=>{callback();timeoutHandler=null;},limit);}};};const listen=(ele,e,callback)=>{if(document.querySelector(ele)!==null){document.querySelector(ele).addEventListener(e,callback);}} -let header=document.getElementById('site-header');let lastScrollPosition=window.pageYOffset;const autoHideHeader=()=>{let currentScrollPosition=Math.max(window.pageYOffset,0);if(currentScrollPosition>lastScrollPosition){header.classList.remove('slideInUp');header.classList.add('slideOutDown');}else{header.classList.remove('slideOutDown');header.classList.add('slideInUp');} -lastScrollPosition=currentScrollPosition;} -let mobileMenuVisible=false;const toggleMobileMenu=()=>{let mobileMenu=document.getElementById('mobile-menu');if(mobileMenuVisible==false){mobileMenu.style.animationName='bounceInRight';mobileMenu.style.webkitAnimationName='bounceInRight';mobileMenu.style.display='block';mobileMenuVisible=true;}else{mobileMenu.style.animationName='bounceOutRight';mobileMenu.style.webkitAnimationName='bounceOutRight' -mobileMenuVisible=false;}} -const showImg=()=>{document.querySelector('.bg-img').classList.add('show-bg-img');} -const hideImg=()=>{document.querySelector('.bg-img').classList.remove('show-bg-img');} -const toggleToc=()=>{document.getElementById('toc').classList.toggle('show-toc');} -if(header!==null){listen('#menu-btn',"click",toggleMobileMenu);listen('#toc-btn',"click",toggleToc);listen('#img-btn',"click",showImg);listen('.bg-img',"click",hideImg);document.querySelectorAll('.post-year').forEach((ele)=>{ele.addEventListener('click',()=>{window.location.hash='#'+ele.id;});});window.addEventListener('scroll',throttle(()=>{autoHideHeader();if(mobileMenuVisible==true){toggleMobileMenu();}},250));};(function(){'use strict';if(!document.queryCommandSupported('copy')){return;} -function flashCopyMessage(el,msg){el.textContent=msg;setTimeout(function(){el.textContent="Copy";},1000);} -function selectText(node){var selection=window.getSelection();var range=document.createRange();range.selectNodeContents(node);selection.removeAllRanges();selection.addRange(range);return selection;} -function addCopyButton(containerEl){var copyBtn=document.createElement("button");copyBtn.className="highlight-copy-btn";copyBtn.textContent="Copy";var codeEl=containerEl.firstElementChild;copyBtn.addEventListener('click',function(){try{var selection=selectText(codeEl);document.execCommand('copy');selection.removeAllRanges();flashCopyMessage(copyBtn,'Copied!')}catch(e){console&&console.log(e);flashCopyMessage(copyBtn,'Failed :\'(')}});containerEl.appendChild(copyBtn);} -var highlightBlocks=document.getElementsByClassName('highlight');Array.prototype.forEach.call(highlightBlocks,addCopyButton);})(); \ No newline at end of file diff --git a/public/mstile-150x150.png b/public/mstile-150x150.png deleted file mode 100644 index f3165af..0000000 Binary files a/public/mstile-150x150.png and /dev/null differ diff --git a/public/safari-pinned-tab.svg b/public/safari-pinned-tab.svg deleted file mode 100644 index 09fab14..0000000 --- a/public/safari-pinned-tab.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/public/site.webmanifest b/public/site.webmanifest deleted file mode 100644 index a1553eb..0000000 --- a/public/site.webmanifest +++ /dev/null @@ -1,19 +0,0 @@ -{ - "name": "", - "short_name": "", - "icons": [ - { - "src": "/android-chrome-192x192.png", - "sizes": "192x192", - "type": "image/png" - }, - { - "src": "/android-chrome-384x384.png", - "sizes": "384x384", - "type": "image/png" - } - ], - "theme_color": "#ffffff", - "background_color": "#ffffff", - "display": "standalone" -} diff --git a/public/sitemap.xml b/public/sitemap.xml deleted file mode 100644 index 9116271..0000000 --- a/public/sitemap.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - https://log101.github.io/ - - - - https://log101.github.io/tags/ - - - diff --git a/public/tags/index.html b/public/tags/index.html deleted file mode 100644 index fe5f6ee..0000000 --- a/public/tags/index.html +++ /dev/null @@ -1,79 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - Tags - - - - - - - -
    - -
    - - -
    -

    Tags

    -
    - - - - - - - - - - - diff --git a/public/tags/index.xml b/public/tags/index.xml deleted file mode 100644 index 84f1db7..0000000 --- a/public/tags/index.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - Tags on log101 - https://log101.github.io/tags/ - Recent content in Tags on log101 - Hugo -- gohugo.io - en-us - - diff --git a/resources/_gen/assets/scss/scss/style.scss_871e1d33253f63f556fbcaa4227752be.content b/resources/_gen/assets/scss/scss/style.scss_871e1d33253f63f556fbcaa4227752be.content deleted file mode 100644 index 615697f..0000000 --- a/resources/_gen/assets/scss/scss/style.scss_871e1d33253f63f556fbcaa4227752be.content +++ /dev/null @@ -1 +0,0 @@ -@charset "UTF-8";.bg{background-color:#fff}.chroma{background-color:#fff;padding:16px;border-radius:4px;border:1px dashed grey}.chroma .err{color:#a61717;background-color:#e3d2d2}.chroma .lnlinks{outline:none;text-decoration:none;color:inherit}.chroma .lntd{vertical-align:top;padding:0;margin:0;border:0}.chroma .lntable{border-spacing:0;padding:0;margin:0;border:0}.chroma .hl{background-color:#e5e5e5}.chroma .lnt{white-space:pre;-webkit-user-select:none;user-select:none;margin-right:.4em;padding:0 .4em;color:#7f7f7f}.chroma .ln{white-space:pre;-webkit-user-select:none;user-select:none;margin-right:.4em;padding:0 .4em;color:#7f7f7f}.chroma .line{display:flex}.chroma .k{color:#000;font-weight:700}.chroma .kc{color:#000;font-weight:700}.chroma .kd{color:#000;font-weight:700}.chroma .kn{color:#000;font-weight:700}.chroma .kp{color:#000;font-weight:700}.chroma .kr{color:#000;font-weight:700}.chroma .kt{color:#458;font-weight:700}.chroma .na{color:teal}.chroma .nb{color:#0086b3}.chroma .bp{color:#999}.chroma .nc{color:#458;font-weight:700}.chroma .no{color:teal}.chroma .nd{color:#3c5d5d;font-weight:700}.chroma .ni{color:purple}.chroma .ne{color:#900;font-weight:700}.chroma .nf{color:#900;font-weight:700}.chroma .nl{color:#900;font-weight:700}.chroma .nn{color:#555}.chroma .nt{color:navy}.chroma .nv{color:teal}.chroma .vc{color:teal}.chroma .vg{color:teal}.chroma .vi{color:teal}.chroma .s{color:#d14}.chroma .sa{color:#d14}.chroma .sb{color:#d14}.chroma .sc{color:#d14}.chroma .dl{color:#d14}.chroma .sd{color:#d14}.chroma .s2{color:#d14}.chroma .se{color:#d14}.chroma .sh{color:#d14}.chroma .si{color:#d14}.chroma .sx{color:#d14}.chroma .sr{color:#009926}.chroma .s1{color:#d14}.chroma .ss{color:#990073}.chroma .m{color:#099}.chroma .mb{color:#099}.chroma .mf{color:#099}.chroma .mh{color:#099}.chroma .mi{color:#099}.chroma .il{color:#099}.chroma .mo{color:#099}.chroma .o{color:#000;font-weight:700}.chroma .ow{color:#000;font-weight:700}.chroma .c{color:#998;font-style:italic}.chroma .ch{color:#998;font-style:italic}.chroma .cm{color:#998;font-style:italic}.chroma .c1{color:#998;font-style:italic}.chroma .cs{color:#999;font-weight:700;font-style:italic}.chroma .cp{color:#999;font-weight:700;font-style:italic}.chroma .cpf{color:#999;font-weight:700;font-style:italic}.chroma .gd{color:#000;background-color:#fdd}.chroma .ge{color:#000;font-style:italic}.chroma .gr{color:#a00}.chroma .gh{color:#999}.chroma .gi{color:#000;background-color:#dfd}.chroma .go{color:#888}.chroma .gp{color:#555}.chroma .gs{font-weight:700}.chroma .gu{color:#aaa}.chroma .gt{color:#a00}.chroma .gl{text-decoration:underline}.chroma .w{color:#bbb}#home-main{display:flex;flex-direction:column;align-items:start;justify-content:space-between;height:100vh;max-width:720px;margin:auto;font-size:1.5rem}@media(max-width:768px){#home-main{margin-left:24px}}#home-center{display:flex;flex-direction:column;align-items:flex-start;margin-top:16vh}#home-nav{display:flex;flex-direction:column}#home-nav a{color:#252525;font-family:inter,sans-serif;font-size:40px;font-style:normal;font-weight:400;line-height:150%;text-decoration-line:underline}#posts-body{max-width:720px;margin:auto;display:flex;flex-direction:column;justify-content:start;height:100vh;margin-bottom:0}@media(max-width:768px){#posts-body{margin:0 24px}}#posts-list{display:flex;flex-direction:column}#posts-header{padding-top:10vh;font-size:20px;font-style:normal;font-weight:400}#posts-header a{text-decoration:none;color:#656565}#posts-header a:hover{text-decoration:underline;color:#151515}#post-header{padding-top:10vh}#post-header a{text-decoration:none;color:#656565}#post-header a:hover{text-decoration:underline;color:#151515}#post-title{font-size:2.5em;font-weight:400;margin-bottom:8px}.post-meta{font-size:1.5em}.post-meta span{color:#303030}.post-tags{margin:10px 0;display:flex;gap:6px}.post-tags .tag{font-size:.9em;padding:3px 14px;text-transform:lowercase;border:1px solid;margin-bottom:6px}.post-tags .tag a{outline:none;text-decoration:none;color:#5c5c5c;font-weight:500}.featured-image img{width:100%}#posts-footer{display:flex;flex-direction:column;flex-grow:1;justify-content:end}.post-item a{color:#252525;font-weight:400;line-height:150%;text-decoration-line:underline;font-size:2em}.post-content{font-size:1.3em;color:#202020;line-height:1.4}.post-content h2{border-bottom:1px solid rgba(71,61,139,.5)}.post-content p{text-align:justify}.post-content p a{text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#483d8b;outline-color:#483d8b;color:#6a5acd}.post-content p img{width:100%}.post-to-top-link{text-decoration:none;color:#656565}.post-to-top-link:hover{text-decoration:underline;color:#151515}body{font-family:inter,sans-serif;line-height:1.4;background-color:#ebf4f3;margin:0}#header-title{color:#202020;font-family:inter,sans-serif;font-style:normal;font-weight:500;line-height:normal}.post-header{margin-bottom:40px}#site-footer{width:100%}#site-footer p{color:#5c5c5c;font-family:Inter;font-size:20px;font-style:normal;font-weight:300;line-height:normal;display:flex;gap:8px;justify-content:center}#site-footer a{color:#5c5c5c;font-family:Inter;font-size:20px;font-style:normal;font-weight:300;line-height:normal;display:flex;gap:8px;justify-content:center;text-decoration:none}#site-footer a:hover{text-decoration:underline}.pagination{display:flex;list-style:none;padding:0;margin:0;justify-content:center;align-items:center;font-family:Inter}.pagination a{text-decoration:none;color:#252525}.pagination .page-item{margin:0}.pagination .page-link{display:block;padding:5px 10px;margin:0 2px}#site-footer{width:100%;user-select:none}#site-footer #copyright{display:flex;align-items:center;justify-content:center}[aria-disabled=true]{text-decoration:none!important}.page-item.active a{text-decoration:none!important}blockquote{border-left:.25em solid;margin:1em;padding:0 1em;font-style:italic}blockquote cite{font-style:normal;display:flex;justify-content:end;gap:6px}blockquote cite::before{content:"—— "} \ No newline at end of file diff --git a/resources/_gen/assets/scss/scss/style.scss_871e1d33253f63f556fbcaa4227752be.json b/resources/_gen/assets/scss/scss/style.scss_871e1d33253f63f556fbcaa4227752be.json deleted file mode 100644 index 7058a7a..0000000 --- a/resources/_gen/assets/scss/scss/style.scss_871e1d33253f63f556fbcaa4227752be.json +++ /dev/null @@ -1 +0,0 @@ -{"Target":"css/style.min.3b8773726571fa9e7d673c971d249fad79d5c7713a58a0ebe2f97e03f3fac93c.css","MediaType":"text/css","Data":{"Integrity":"sha256-O4dzcmVx+p59ZzyXHSSfrXnVx3E6WKDr4vl+A/P6yTw="}} \ No newline at end of file diff --git a/resources/_gen/assets/scss/scss/style.scss_c16d144eee185fbddd582cd5e25a4fae.content b/resources/_gen/assets/scss/scss/style.scss_c16d144eee185fbddd582cd5e25a4fae.content deleted file mode 100644 index 4d4229a..0000000 --- a/resources/_gen/assets/scss/scss/style.scss_c16d144eee185fbddd582cd5e25a4fae.content +++ /dev/null @@ -1 +0,0 @@ -#page{height:100vh;margin:0}#spotlight{display:flex;min-height:100vh;flex-direction:column;align-items:start;justify-content:space-between;width:400px;margin:auto;font-size:1.5rem}@media(max-width:448px){#spotlight{margin-left:24px}}#home-center{display:flex;flex-direction:column;flex-grow:1;align-items:flex-start;justify-content:center}#home-title{color:#202020;font-family:Inter;font-size:48px;font-style:normal;font-weight:500;line-height:normal}#home-nav{display:flex;flex-direction:column}#home-nav a{color:#252525;font-family:Inter;font-size:40px;font-style:normal;font-weight:400;line-height:150%;text-decoration-line:underline}.post-item .post-day,.post-item a{color:#252525;font-family:Inter;font-size:40px;font-style:normal;font-weight:400;line-height:150%;text-decoration-line:underline}#site-footer,#home-footer{width:100%}#site-footer p,#home-footer p{color:#5c5c5c;font-family:Inter;font-size:20px;font-style:normal;font-weight:300;line-height:normal;display:flex;gap:8px;justify-content:center}#site-footer a,#home-footer a{color:#5c5c5c;font-family:Inter;font-size:20px;font-style:normal;font-weight:300;line-height:normal;display:flex;gap:8px;justify-content:center;text-decoration:none}#site-footer a:hover,#home-footer a:hover{text-decoration:underline}.posts-group{width:400px}.post-item{display:flex;justify-content:space-between;align-items:center;width:100%}.post-item a{font-size:30px}.post-item .post-day{font-size:30px;text-decoration:none;color:#787878} \ No newline at end of file diff --git a/resources/_gen/assets/scss/scss/style.scss_c16d144eee185fbddd582cd5e25a4fae.json b/resources/_gen/assets/scss/scss/style.scss_c16d144eee185fbddd582cd5e25a4fae.json deleted file mode 100644 index a96600f..0000000 --- a/resources/_gen/assets/scss/scss/style.scss_c16d144eee185fbddd582cd5e25a4fae.json +++ /dev/null @@ -1 +0,0 @@ -{"Target":"css/style.min.874b34949ea9c71723a116e0ec84bc0574d93ea8b368b26ebfc1979fcfc931b2.css","MediaType":"text/css","Data":{"Integrity":"sha256-h0s0lJ6pxxcjoRbg7IS8BXTZPqizaLJuv8GXn8/JMbI="}} \ No newline at end of file diff --git a/static/en/furkan_erdem_cv.pdf b/static/en/furkan_erdem_cv.pdf deleted file mode 100644 index f197215..0000000 Binary files a/static/en/furkan_erdem_cv.pdf and /dev/null differ diff --git a/static/tr/furkan_erdem_cv.pdf b/static/tr/furkan_erdem_cv.pdf deleted file mode 100644 index 9f89faf..0000000 Binary files a/static/tr/furkan_erdem_cv.pdf and /dev/null differ diff --git a/themes/hermit b/themes/hermit deleted file mode 160000 index 2dc35c5..0000000 --- a/themes/hermit +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 2dc35c5c6a52168a3a7b35c5ad51209f40a851cf