Skip to content

Commit 0333e62

Browse files
committed
initial commit with transferred content
0 parents  commit 0333e62

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

110 files changed

+5189
-0
lines changed

.github/dependabot.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: npm
4+
directory: "/"
5+
schedule:
6+
interval: daily
7+
open-pull-requests-limit: 20

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
.DS_Store
2+
Thumbs.db
3+
db.json
4+
*.log
5+
node_modules/
6+
public/
7+
.deploy*/
8+
_multiconfig.yml

_config.landscape.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
menu:
2+
Home: /
3+
Archives: /archives
4+
rss: /atom.xml
5+
banner: /image/amfoss-dark.png
6+
subtitle: The official blog page of amFOSS
7+
favicon: /image/favicon.jpg
8+
9+
10+
# Content
11+
excerpt_link: Read More
12+
fancybox: true
13+
recent_posts_limits: 5
14+
# Footer
15+
copyright: |-
16+
<a rel="license" href="http://creativecommons.org/licenses/by-nc-nd/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nc-nd/4.0/88x31.png" /></a></br>
17+
All website licensed under <a href="https://creativecommons.org/licenses/by-nc-nd/4.0/" target="_blank">CC BY-NC-ND 4.0</a></br>
18+
19+
# Sidebar
20+
sidebar: right
21+
widgets:
22+
- category
23+
- tag
24+
- archive
25+
- recent_posts
26+
27+
# Header links
28+
# Each name must correspond to the icon name of Fork Awesome
29+
# https://forkaweso.me/Fork-Awesome/icons/
30+
#links:
31+
# github: https://github.com/your_github_account
32+
# twitter: https://twitter.com/your_twitter_account
33+
# telegram: https://t.me/your_telegram_account

_config.yml

Lines changed: 109 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
1+
# Hexo Configuration
2+
## Docs: https://hexo.io/docs/configuration.html
3+
## Source: https://github.com/hexojs/hexo/
4+
5+
# Site
6+
title: 'amFOSS'
7+
subtitle: ''
8+
description: ''
9+
keywords:
10+
author: amFOSS team
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: http://amfoss.in
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+
tag_generator:
28+
per_page: 10
29+
order_by: -date
30+
archive_dir: archives
31+
category_dir: categories
32+
code_dir: downloads/code
33+
i18n_dir: :lang
34+
skip_render:
35+
36+
# Writing
37+
new_post_name: :title.md # File name of new posts
38+
default_layout: post
39+
titlecase: false # Transform title into titlecase
40+
external_link:
41+
enable: true # Open external links in new tab
42+
field: site # Apply to the whole site
43+
exclude: ''
44+
filename_case: 0
45+
render_drafts: false
46+
post_asset_folder: false
47+
relative_link: false
48+
future: true
49+
syntax_highlighter: highlight.js
50+
highlight:
51+
line_number: true
52+
auto_detect: false
53+
tab_replace: ''
54+
wrap: true
55+
hljs: false
56+
prismjs:
57+
preprocess: true
58+
line_number: true
59+
tab_replace: ''
60+
61+
# Home page setting
62+
# path: Root path for your blogs index page. (default = '')
63+
# per_page: Posts displayed per page. (0 = disable pagination)
64+
# order_by: Posts order. (Order by date descending by default)
65+
index_generator:
66+
path: ''
67+
per_page: 10
68+
order_by: -date
69+
70+
# Category & Tag
71+
default_category: uncategorized
72+
category_map:
73+
tag_map:
74+
75+
# Metadata elements
76+
## https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta
77+
meta_generator: true
78+
79+
# Date / Time format
80+
## Hexo uses Moment.js to parse and display date
81+
## You can customize the date format as defined in
82+
## http://momentjs.com/docs/#/displaying/format/
83+
date_format: YYYY-MM-DD
84+
time_format: HH:mm:ss
85+
## updated_option supports 'mtime', 'date', 'empty'
86+
updated_option: 'mtime'
87+
88+
# Pagination
89+
## Set per_page to 0 to disable pagination
90+
per_page: 10
91+
pagination_dir: page
92+
93+
# Include / Exclude file(s)
94+
## include:/exclude: options only apply to the 'source/' folder
95+
include:
96+
exclude:
97+
ignore:
98+
99+
# Extensions
100+
## Plugins: https://hexo.io/plugins/
101+
## Themes: https://hexo.io/themes/
102+
theme: landscape
103+
104+
# Deployment
105+
## Docs: https://hexo.io/docs/one-command-deployment
106+
deploy:
107+
type: git
108+
repo: https://github.com/hkx05/hkx05.github.io
109+
branch: master

0 commit comments

Comments
 (0)