Skip to content

Commit a1ef7d1

Browse files
committed
feat: add the new setup to the next folder
1 parent d9fa7f4 commit a1ef7d1

Some content is hidden

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

49 files changed

+16069
-0
lines changed

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,6 @@
77
[submodule "src/actors"]
88
path = src/actors
99
url = https://github.com/filecoin-project/specs-actors.git
10+
[submodule "next/.site/themes/book"]
11+
path = next/.site/themes/book
12+
url = https://github.com/alex-shpak/hugo-book

next/.gitignore

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
.vscode
2+
.idea
3+
public/
4+
deps/
5+
.slime/
6+
build/
7+
hugo/resources
8+
hugo/content/docs
9+
hugo/content/ox-hugo
10+
hugo/content/codeGen/main
11+
.DS_Store
12+
*.gen.go
13+
hugo/data/version.yml
14+
pkg/
15+
tools/codeGen/codeGen
16+
yarn.lock

next/.site/archetypes/default.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
title: "{{ replace .Name "-" " " | title }}"
3+
date: {{ .Date }}
4+
draft: true
5+
---
6+

next/.site/assets/_custom.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/* You can add custom styles here. */
2+
3+
// @import "plugins/numbered";
4+
// @import "plugins/scrollbars";

next/.site/assets/_variables.scss

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
/* You can override SASS variables here. */
2+
3+
@import "plugins/dark";
4+
5+
.mermaid {
6+
width: auto;
7+
height: 400px;
8+
overflow: hidden;
9+
}

next/.site/config.toml

Lines changed: 103 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
1+
# hugo server --minify --themesDir ... --baseURL=http://0.0.0.0:1313/theme/hugo-book/
2+
3+
baseURL = 'https://example.com/'
4+
title = 'Filecoin Spec'
5+
theme = 'book'
6+
7+
# Book configuration
8+
disablePathToLower = true
9+
# enableGitInfo = true
10+
11+
# Needed for mermaid/katex shortcodes
12+
[markup]
13+
[markup.goldmark.renderer]
14+
unsafe = true
15+
16+
[markup.tableOfContents]
17+
startLevel = 1
18+
19+
# Multi-lingual mode config
20+
# There are different options to translate files
21+
# See https://gohugo.io/content-management/multilingual/#translation-by-filename
22+
# And https://gohugo.io/content-management/multilingual/#translation-by-content-directory
23+
[languages]
24+
[languages.en]
25+
languageName = 'English'
26+
contentDir = './../content'
27+
weight = 1
28+
29+
# [languages.ru]
30+
# languageName = 'Russian'
31+
# contentDir = 'content.ru'
32+
# weight = 2
33+
34+
# [languages.zh]
35+
# languageName = 'Chinese'
36+
# contentDir = 'content.zh'
37+
# weight = 3
38+
39+
[menu]
40+
# [[menu.before]]
41+
# [[menu.after]]
42+
# name = "Github"
43+
# url = "https://github.com/alex-shpak/hugo-book"
44+
# weight = 10
45+
46+
# [[menu.after]]
47+
# name = "Hugo Themes"
48+
# url = "https://themes.gohugo.io/hugo-book/"
49+
# weight = 20
50+
51+
[params]
52+
# (Optional, default true) Controls table of contents visibility on right side of pages.
53+
# Start and end levels can be controlled with markup.tableOfContents setting.
54+
# You can also specify this parameter per page in front matter.
55+
BookToC = true
56+
57+
# (Optional, default none) Set the path to a logo for the book. If the logo is
58+
# /static/logo.png then the path would be logo.png
59+
# BookLogo = 'logo.png'
60+
61+
# (Optional, default none) Set leaf bundle to render as side menu
62+
# When not specified file structure and weights will be used
63+
# BookMenuBundle = '/menu'
64+
65+
# (Optional, default docs) Specify root page to render child pages as menu.
66+
# Page is resoled by .GetPage function: https://gohugo.io/functions/getpage/
67+
# For backward compatibility you can set '*' to render all sections to menu. Acts same as '/'
68+
BookSection = '*'
69+
70+
# Set source repository location.
71+
# Used for 'Last Modified' and 'Edit this page' links.
72+
BookRepo = 'https://github.com/alex-shpak/hugo-book'
73+
74+
# Enable "Edit this page" links for 'doc' page type.
75+
# Disabled by default. Uncomment to enable. Requires 'BookRepo' param.
76+
# Edit path must point to root directory of repo.
77+
BookEditPath = 'edit/master/exampleSite'
78+
79+
# Configure the date format used on the pages
80+
# - In git information
81+
# - In blog posts
82+
BookDateFormat = 'January 2, 2006'
83+
84+
# (Optional, default true) Enables search function with flexsearch,
85+
# Index is built on fly, therefore it might slowdown your website.
86+
# Configuration for indexing can be adjusted in i18n folder per language.
87+
BookSearch = true
88+
89+
# (Optional, default true) Enables comments template on pages
90+
# By default partals/docs/comments.html includes Disqus template
91+
# See https://gohugo.io/content-management/comments/#configure-disqus
92+
# Can be overwritten by same param in page frontmatter
93+
BookComments = false
94+
95+
# /!\ This is an experimental feature, might be removed or changed at any time
96+
# (Optional, experimental, default false) Enables portable links and link checks in markdown pages.
97+
# Portable links meant to work with text editors and let you write markdown without {{< relref >}} shortcode
98+
# Theme will print warning if page referenced in markdown does not exists.
99+
BookPortableLinks = true
100+
101+
# /!\ This is an experimental feature, might be removed or changed at any time
102+
# (Optional, experimental, default false) Enables service worker that caches visited pages and resources for offline use.
103+
BookServiceWorker = true

next/.site/content/_index.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
---
2+
title: Introduction
3+
type: docs
4+
---
5+
6+
# Acerbo datus maxime
7+
8+
{{< columns >}}
9+
## Astris ipse furtiva
10+
11+
Est in vagis et Pittheus tu arge accipiter regia iram vocatur nurus. Omnes ut
12+
olivae sensit **arma sorori** deducit, inesset **crudus**, ego vetuere aliis,
13+
modo arsit? Utinam rapta fiducia valuere litora _adicit cursu_, ad facies
14+
15+
<--->
16+
17+
## Suis quot vota
18+
19+
Ea _furtique_ risere fratres edidit terrae magis. Colla tam mihi tenebat:
20+
miseram excita suadent es pecudes iam. Concilio _quam_ velatus posset ait quod
21+
nunc! Fragosis suae dextra geruntur functus vulgata.
22+
{{< /columns >}}
23+
24+
25+
## Tempora nisi nunc
26+
27+
Lorem **markdownum** emicat gestu. Cannis sol pressit ducta. **Est** Idaei,
28+
tremens ausim se tutaeque, illi ulnis hausit, sed, lumina cutem. Quae avis
29+
sequens!
30+
31+
var panel = ram_design;
32+
if (backup + system) {
33+
file.readPoint = network_native;
34+
sidebar_engine_device(cell_tftp_raster,
35+
dual_login_paper.adf_vci.application_reader_design(
36+
graphicsNvramCdma, lpi_footer_snmp, integer_model));
37+
}
38+
39+
## Locis suis novi cum suoque decidit eadem
40+
41+
Idmoniae ripis, at aves, ali missa adest, ut _et autem_, et ab?
Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
---
2+
weight: 1
3+
bookFlatSection: true
4+
title: "Example Site"
5+
---
6+
7+
# Introduction
8+
9+
## Ferre hinnitibus erat accipitrem dixi Troiae tollens
10+
11+
Lorem markdownum, a quoque nutu est *quodcumque mandasset* veluti. Passim
12+
inportuna totidemque nympha fert; repetens pendent, poenarum guttura sed vacet
13+
non, mortali undas. Omnis pharetramque gramen portentificisque membris servatum
14+
novabis fallit de nubibus atque silvas mihi. **Dixit repetitaque Quid**; verrit
15+
longa; sententia [mandat](http://pastor-ad.io/questussilvas) quascumque nescio
16+
solebat [litore](http://lacrimas-ab.net/); noctes. *Hostem haerentem* circuit
17+
[plenaque tamen](http://www.sine.io/in).
18+
19+
- Pedum ne indigenae finire invergens carpebat
20+
- Velit posses summoque
21+
- De fumos illa foret
22+
23+
## Est simul fameque tauri qua ad
24+
25+
Locum nullus nisi vomentes. Ab Persea sermone vela, miratur aratro; eandem
26+
Argolicas gener.
27+
28+
## Me sol
29+
30+
Nec dis certa fuit socer, Nonacria **dies** manet tacitaque sibi? Sucis est
31+
iactata Castrumque iudex, et iactato quoque terraeque es tandem et maternos
32+
vittis. Lumina litus bene poenamque animos callem ne tuas in leones illam dea
33+
cadunt genus, et pleno nunc in quod. Anumque crescentesque sanguinis
34+
[progenies](http://www.late.net/alimentavirides) nuribus rustica tinguet. Pater
35+
omnes liquido creditis noctem.
36+
37+
if (mirrored(icmp_dvd_pim, 3, smbMirroredHard) != lion(clickImportQueue,
38+
viralItunesBalancing, bankruptcy_file_pptp)) {
39+
file += ip_cybercrime_suffix;
40+
}
41+
if (runtimeSmartRom == netMarketingWord) {
42+
virusBalancingWin *= scriptPromptBespoke + raster(post_drive,
43+
windowsSli);
44+
cd = address_hertz_trojan;
45+
soap_ccd.pcbServerGigahertz(asp_hardware_isa, offlinePeopleware, nui);
46+
} else {
47+
megabyte.api = modem_flowchart - web + syntaxHalftoneAddress;
48+
}
49+
if (3 < mebibyteNetworkAnimated) {
50+
pharming_regular_error *= jsp_ribbon + algorithm * recycleMediaKindle(
51+
dvrSyntax, cdma);
52+
adf_sla *= hoverCropDrive;
53+
templateNtfs = -1 - vertical;
54+
} else {
55+
expressionCompressionVariable.bootMulti = white_eup_javascript(
56+
table_suffix);
57+
guidPpiPram.tracerouteLinux += rtfTerabyteQuicktime(1,
58+
managementRosetta(webcamActivex), 740874);
59+
}
60+
var virusTweetSsl = nullGigo;
61+
62+
## Trepident sitimque
63+
64+
Sentiet et ferali errorem fessam, coercet superbus, Ascaniumque in pennis
65+
mediis; dolor? Vidit imi **Aeacon** perfida propositos adde, tua Somni Fluctibus
66+
errante lustrat non.
67+
68+
Tamen inde, vos videt e flammis Scythica parantem rupisque pectora umbras. Haec
69+
ficta canistris repercusso simul ego aris Dixit! Esse Fama trepidare hunc
70+
crescendo vigor ululasse vertice *exspatiantur* celer tepidique petita aversata
71+
oculis iussa est me ferro.
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# 4th Level of Menu
2+
3+
## Caesorum illa tu sentit micat vestes papyriferi
4+
5+
Inde aderam facti; Theseus vis de tauri illa peream. Oculos **uberaque** non
6+
regisque vobis cursuque, opus venit quam vulnera. Et maiora necemque, lege modo;
7+
gestanda nitidi, vero? Dum ne pectoraque testantur.
8+
9+
Venasque repulsa Samos qui, exspectatum eram animosque hinc, [aut
10+
manes](http://www.creveratnon.net/apricaaetheriis), Assyrii. Cupiens auctoribus
11+
pariter rubet, profana magni super nocens. Vos ius sibilat inpar turba visae
12+
iusto! Sedes ante dum superest **extrema**.
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# 3rd Level of Menu
2+
3+
Nefas discordemque domino montes numen tum humili nexilibusque exit, Iove. Quae
4+
miror esse, scelerisque Melaneus viribus. Miseri laurus. Hoc est proposita me
5+
ante aliquid, aura inponere candidioribus quidque accendit bella, sumpta.
6+
Intravit quam erat figentem hunc, motus de fontes parvo tempestate.
7+
8+
iscsi_virus = pitch(json_in_on(eupViral),
9+
northbridge_services_troubleshooting, personal(
10+
firmware_rw.trash_rw_crm.device(interactive_gopher_personal,
11+
software, -1), megabit, ergonomicsSoftware(cmyk_usb_panel,
12+
mips_whitelist_duplex, cpa)));
13+
if (5) {
14+
managementNetwork += dma - boolean;
15+
kilohertz_token = 2;
16+
honeypot_affiliate_ergonomics = fiber;
17+
}
18+
mouseNorthbridge = byte(nybble_xmp_modem.horse_subnet(
19+
analogThroughputService * graphicPoint, drop(daw_bit, dnsIntranet),
20+
gateway_ospf), repository.domain_key.mouse(serverData(fileNetwork,
21+
trim_duplex_file), cellTapeDirect, token_tooltip_mashup(
22+
ripcordingMashup)));
23+
module_it = honeypot_driver(client_cold_dvr(593902, ripping_frequency) +
24+
coreLog.joystick(componentUdpLink), windows_expansion_touchscreen);
25+
bashGigabit.external.reality(2, server_hardware_codec.flops.ebookSampling(
26+
ciscNavigationBacklink, table + cleanDriver), indexProtocolIsp);

0 commit comments

Comments
 (0)