Skip to content

Commit 4fdaf14

Browse files
committed
update
update
1 parent 3a61349 commit 4fdaf14

11 files changed

Lines changed: 204 additions & 3 deletions

File tree

.DS_Store

2 KB
Binary file not shown.

._config.yml.swp

-12 KB
Binary file not shown.

._config.yml.un~

988 Bytes
Binary file not shown.

_config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
# Site
66
title: Stationary Action
7-
subtitle: ''
8-
description: ''
7+
subtitle: 'subtitle'
8+
description: 'description'
99
keywords:
1010
author: Ogul Oncel
1111
language: en

_config.yml~

Lines changed: 123 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,123 @@
1+
# Hexo Configuration
2+
## Docs: https://hexo.io/docs/configuration.html
3+
## Source: https://github.com/hexojs/hexo/
4+
5+
# Site
6+
title: Stationary Action
7+
subtitle: ''
8+
description: ''
9+
keywords:
10+
author: Ogul Oncel
11+
language: en
12+
timezone: ''
13+
14+
# URL
15+
## Set your site url here. For example, if you use GitHub Page, set url as 'https://username.github.io/project'
16+
url: https://ooncel.github.io/webpage
17+
permalink: :year/:month/:day/:title/
18+
permalink_defaults:
19+
pretty_urls:
20+
trailing_index: true # Set to false to remove trailing 'index.html' from permalinks
21+
trailing_html: true # Set to false to remove trailing '.html' from permalinks
22+
23+
# Directory
24+
source_dir: source
25+
public_dir: public
26+
tag_dir: tags
27+
archive_dir: archives
28+
category_dir: categories
29+
code_dir: downloads/code
30+
i18n_dir: :lang
31+
skip_render:
32+
33+
# Writing
34+
new_post_name: :title.md # File name of new posts
35+
default_layout: post
36+
titlecase: false # Transform title into titlecase
37+
external_link:
38+
enable: true # Open external links in new tab
39+
field: site # Apply to the whole site
40+
exclude: ''
41+
filename_case: 0
42+
render_drafts: false
43+
post_asset_folder: false
44+
relative_link: false
45+
future: true
46+
syntax_highlighter: highlight.js
47+
highlight:
48+
line_number: true
49+
auto_detect: false
50+
tab_replace: ''
51+
wrap: true
52+
hljs: false
53+
prismjs:
54+
preprocess: true
55+
line_number: true
56+
tab_replace: ''
57+
58+
# Home page setting
59+
# path: Root path for your blogs index page. (default = '')
60+
# per_page: Posts displayed per page. (0 = disable pagination)
61+
# order_by: Posts order. (Order by date descending by default)
62+
index_generator:
63+
path: ''
64+
per_page: 10
65+
order_by: -date
66+
67+
# Category & Tag
68+
default_category: uncategorized
69+
category_map:
70+
tag_map:
71+
72+
# Metadata elements
73+
## https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta
74+
meta_generator: true
75+
76+
# Date / Time format
77+
## Hexo uses Moment.js to parse and display date
78+
## You can customize the date format as defined in
79+
## http://momentjs.com/docs/#/displaying/format/
80+
date_format: YYYY-MM-DD
81+
time_format: HH:mm:ss
82+
## updated_option supports 'mtime', 'date', 'empty'
83+
updated_option: 'mtime'
84+
85+
# Pagination
86+
## Set per_page to 0 to disable pagination
87+
per_page: 10
88+
pagination_dir: page
89+
90+
# Include / Exclude file(s)
91+
## include:/exclude: options only apply to the 'source/' folder
92+
include:
93+
exclude:
94+
ignore:
95+
##
96+
logo:
97+
enabled: true
98+
width: 50
99+
height: 50
100+
url: /images/logo.png
101+
gravatar: false
102+
grayout: true
103+
## nav
104+
nav:
105+
home: /
106+
about: /about/
107+
articles: /archives/
108+
projects: http://github.com/ooncel
109+
LINK_NAME: URL
110+
# Extensions
111+
## Plugins: https://hexo.io/plugins/
112+
## Themes: https://hexo.io/themes/
113+
#theme: landscape
114+
theme: cactus
115+
theme_config:
116+
colorscheme: classic
117+
# Deployment
118+
## Docs: https://hexo.io/docs/one-command-deployment
119+
deploy:
120+
type: git
121+
repo: https://github.com/ooncel/webpage.git # https://bitbucket.org/JohnSmith/johnsmith.bitbucket.io
122+
branch: main
123+
message: deploying

source/.DS_Store

2 KB
Binary file not shown.

source/about/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
title: about
33
date: 2025-08-03 17:48:07
44
---
5-
asdasdas
5+
Physicist with an interest in classical culture, architecture and history.

themes/.DS_Store

0 Bytes
Binary file not shown.

themes/cactus/.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
.DS_Store
2+
.idea/
3+
*.log
4+
*.iml
5+
.tern-port
6+
yarn.lock
7+
package-lock.json
8+
node_modules/
9+
.vscode

themes/cactus/.jshintrc

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"asi": false,
3+
"bitwise": true,
4+
"browser": true,
5+
"camelcase": true,
6+
"curly": true,
7+
"forin": true,
8+
"immed": true,
9+
"latedef": "nofunc",
10+
"maxlen": 120,
11+
"newcap": true,
12+
"noarg": true,
13+
"noempty": true,
14+
"nonew": true,
15+
"predef": [
16+
"$"
17+
],
18+
"quotmark": true,
19+
"trailing": true,
20+
"undef": true,
21+
"unused": true,
22+
23+
"expr": true
24+
}

0 commit comments

Comments
 (0)