Skip to content

Commit eed4b21

Browse files
committed
chore: Update font source and font weight in _global.scss
1 parent 4c088a6 commit eed4b21

File tree

10 files changed

+135
-58
lines changed

10 files changed

+135
-58
lines changed

CHANGELOG.md

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,6 @@ All notable changes to this project will be documented in this file. Dates are d
44

55
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
66

7-
#### 1.0.0
8-
9-
- Bump markdownlint-cli from 0.35.0 to 0.37.0 [`#30`](https://github.com/Genocs/genocs-library-docs/pull/30)
10-
- Bump stylelint-config-standard-scss from 10.0.0 to 11.0.0 [`#29`](https://github.com/Genocs/genocs-library-docs/pull/29)
11-
- Bump stylelint-config-standard-scss from 6.1.0 to 10.0.0 [`#27`](https://github.com/Genocs/genocs-library-docs/pull/27)
12-
- Bump katex from 0.15.6 to 0.16.8 [`#22`](https://github.com/Genocs/genocs-library-docs/pull/22)
13-
- Bump markdownlint-cli from 0.31.1 to 0.35.0 [`#20`](https://github.com/Genocs/genocs-library-docs/pull/20)
14-
- Bump @fullhuman/postcss-purgecss from 4.1.3 to 5.0.0 [`#9`](https://github.com/Genocs/genocs-library-docs/pull/9)
15-
- Bump stylelint from 14.16.1 to 15.10.3 [`#26`](https://github.com/Genocs/genocs-library-docs/pull/26)
16-
- Bump postcss-cli from 9.1.0 to 10.1.0 [`#17`](https://github.com/Genocs/genocs-library-docs/pull/17)
17-
- Bump mermaid from 9.4.3 to 10.2.3 [`#18`](https://github.com/Genocs/genocs-library-docs/pull/18)
18-
- updated to node 18 [`#8`](https://github.com/Genocs/genocs-library-docs/pull/8)
19-
- removed images [`#7`](https://github.com/Genocs/genocs-library-docs/pull/7)
20-
- May 2023 [`#1`](https://github.com/Genocs/genocs-library-docs/pull/1)
21-
- chore: Update JWT authentication options in authentication documentation [`#123`](https://github.com/Genocs/genocs-library-docs/issues/123)
22-
- First commit [`44e8059`](https://github.com/Genocs/genocs-library-docs/commit/44e8059148d283751956f072f8ba8c234e7deb99)
23-
- typo fix [`3a4372b`](https://github.com/Genocs/genocs-library-docs/commit/3a4372b28f2efb13829b7f37bfbd81b683598108)
24-
- Fix typo [`9c07215`](https://github.com/Genocs/genocs-library-docs/commit/9c072152143fb0d1237ec4ac7040f7262e94f63f)
25-
267
<!-- auto-changelog-above -->
278

289
### [0.2.3](https://github.com/h-enk/doks/compare/v0.2.2...v0.2.3) (2021-04-02)

assets/scss/common/_global.scss

Lines changed: 22 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -67,12 +67,30 @@ body.docs {
6767
}
6868
}
6969

70-
.home h1 {
71-
/* font-size: calc(1.375rem + 1.5vw); */
72-
font-weight: 900;
73-
font-size: calc(4.0rem + 15.0vw);
70+
@media (max-width: 1250px) {
71+
72+
.home h1 {
73+
font-weight: 900;
74+
font-size: calc(4.0rem + 5.0vw);
75+
}
76+
77+
.gradient-banner {
78+
font-size: 2em;
79+
}
7480
}
7581

82+
@media (min-width: 1250px) {
83+
.home h1 {
84+
font-weight: 900;
85+
font-size: calc(4.0rem + 15.0vw);
86+
}
87+
88+
.gradient-banner {
89+
font-size: 4em;
90+
}
91+
}
92+
93+
7694
a:hover,
7795
a:focus {
7896
text-decoration: none;
@@ -330,7 +348,6 @@ a.btn:focus {
330348
}
331349

332350
.gradient-banner {
333-
font-size: 4em;
334351
font-weight: 900;
335352
margin: 40px 0;
336353
background: -webkit-linear-gradient(-45deg,

config/_default/menus/menus.en.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@
4141

4242
####################################
4343

44-
[[main]]
45-
name = "Microservices"
46-
identifier = "microservices"
47-
url = "/dotnet-microservices-template/"
48-
weight = 50
44+
## [[main]]
45+
## name = "Microservices"
46+
## identifier = "microservices"
47+
## url = "/dotnet-microservices-template/"
48+
## weight = 50
4949

5050
####################################
5151

content/en/containers/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title : "Containers"
3-
description: "Containerizing applications is mandatory step for modern enterprise applications. Genocs Library contains containers setup as well!"
4-
lead: ""
3+
description: "How to containerize your solution!"
4+
lead: "Containerizing applications is mandatory step for modern enterprise applications. Genocs Library contains containers setup as well!"
55
date: 2023-05-13T15:40:19+02:00
66
lastmod: 2023-09-01T21:40:19+02:00
77
draft: false
Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
---
2+
title: "OpenAPI"
3+
description: "How to use documentation to be fully compliant with OpenApi."
4+
lead: "Genocs's Web API and OpenApi."
5+
date: 2021-08-24T11:40:05+05:30
6+
lastmod: 2021-10-28T10:07:45+05:30
7+
draft: false
8+
images: []
9+
menu:
10+
dotnet-templates:
11+
identifier: "open-api"
12+
name: "OpenAPI"
13+
parent: "fundamentals"
14+
weight: 11
15+
toc: true
16+
---
17+
18+
Genocs's Web API and OpenApi.
19+
20+
Genocs Web API is fully compliant with OpenApi. This means that you can use the Swagger UI to test your API and generate client code for your application.
21+
You can also use the OpenApi specification to generate client code for your application.
22+
The doumentation is generated automatically from the code. You can use both ReDoc and Swagger UI to test your API.
23+
24+
## Configuration
25+
26+
The configuration is done in the `appsettings.json` file. You can enable or disable the Swagger UI and ReDoc. You can also set the name, title, version, description, route prefix, contact name, contact email, contact url, license name, license url, terms of service, include security, serialize as OpenApiV2, and servers.
27+
28+
```json
29+
"swagger": {
30+
"enabled": true,
31+
"reDocEnabled": false,
32+
"name": "Orders",
33+
"title": "Orders Service",
34+
"version": "v002",
35+
"description": "Orders Service",
36+
"routePrefix": "swagger",
37+
"contactName": "Giovanni Nocco",
38+
"contactEmail": "[email protected]",
39+
"contactUrl": "https://www.genocs.com",
40+
"licenseName": "MIT",
41+
"licenseUrl": "https://www.genocs.com/license.html",
42+
"termsOfService": "https://www.genocs.com/terms_and_conditions.html",
43+
"includeSecurity": true,
44+
"serializeAsOpenApiV2": true,
45+
"servers": [
46+
{
47+
"url": "http://localhost:5300",
48+
"description": "Local version to be used for development"
49+
},
50+
{
51+
"url": "http://fiscanner-api",
52+
"description": "Containerized version to be used into with docker or k8s"
53+
},
54+
{
55+
"url": "https://fiscanner-api.azurewebsites.net",
56+
"description": "Production deployed on Azure"
57+
}
58+
]
59+
}
60+
61+
```
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
---
2+
title: "OpenAPI"
3+
description: "How to implement logging tracing and monitoring by using OpenTelementry."
4+
lead: "Genocs's Web API and OpenTelelemetry."
5+
date: 2021-08-24T11:40:05+05:30
6+
lastmod: 2021-10-28T10:07:45+05:30
7+
draft: false
8+
images: []
9+
menu:
10+
dotnet-templates:
11+
identifier: "open-telementry"
12+
name: "OpenTelemetry"
13+
parent: "fundamentals"
14+
weight: 12
15+
toc: true
16+
---
17+
18+
## Installation
19+
20+
``` bash
21+
dotnet add package Genocs.Tracing
22+
```
23+
24+
Genocs's Web API and OpenTelemetry.
25+
26+
Genocs Web API is fully compliant with OpenTelemetry. This means that you can use the OpenTelemetry to implement logging, tracing, and monitoring in your application.
27+
28+
29+
## Configuration
30+
31+
The configuration is done in the `appsettings.json` file. You can enable or disable the OpenTelemetry. You can also set the application name, exclude paths, level, console, file, seq, jaeger, and metrics.
32+
33+
[Open Telemetry](https://opentelemetry.io/)
34+

content/en/dotnet-templates/fundamentals/swagger.md

Lines changed: 0 additions & 18 deletions
This file was deleted.

content/en/library/_index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ Supported features that will help to quickly set up your next microservices:
1616
- CQRS basic abstractions
1717
- [Consul](https://www.consul.io) service registry integration
1818
- [Swagger](https://swagger.io) extensions
19+
- [Redocly](https://redocly.com/) extensions
1920
- [RestEase](https://github.com/canton7/RestEase) extensions
2021
- [Fabio](https://github.com/fabiolb/fabio) load balancer integration
2122
- Logging extensions for [Serilog](https://serilog.net/) & integration with [Seq](https://datalust.co/seq), [ELK](https://www.elastic.co/what-is/elk-stack), [Loki](https://grafana.com/oss/loki/)
@@ -27,6 +28,7 @@ Supported features that will help to quickly set up your next microservices:
2728
- [MongoDB](https://www.mongodb.com/cloud) extensions
2829
- [OpenStack OCS](https://specs.openstack.org/openstack/ironic-specs/specs/4.0/msft-ocs-power-driver.html) support
2930
- [Redis](https://redis.io) extensions
31+
- [Azure Key Vault](https://azure.microsoft.com/en-us/products/key-vault) Azure key vault integration
3032
- [Vault](https://www.vaultproject.io) secrets engine (settings, dynamic credentials, PKI etc.) integration
3133
- Security extensions (certificates, mTLS, encryption etc.)
3234
- [Jaeger](https://www.jaegertracing.io) tracing integration

layouts/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<section class="section section-sm bg-light">
33
<div class="row justify-content-center">
44
<div class="col-lg-12 text-center">
5-
<h1><b>Genocs</b></h1>
5+
<h1>Genocs</h1>
66
<p class="gradient-banner">{{ .Params.sub }}</p>
7-
<h2 style="font-weight: 900; font-size: 4em;">
7+
<h2 style="font-weight: 900;">
88
✔️ <b class="code-green">
99
<a href="https://github.com/Genocs/genocs-library/releases/tag/v6.1.0">v6.1.0</a>
1010
</b>

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "genocs-library",
33
"description": "Genocs Library Doks theme",
4-
"version": "1.0.0",
4+
"version": "1.1.0",
55
"browserslist": [
66
"defaults"
77
],
@@ -34,17 +34,17 @@
3434
"version": "auto-changelog -p && git add CHANGELOG.md"
3535
},
3636
"devDependencies": {
37-
"@babel/cli": "^7.24",
38-
"@babel/core": "^7.24",
39-
"@babel/preset-env": "^7.24",
40-
"@fullhuman/postcss-purgecss": "^5.0",
41-
"auto-changelog": "^2.4.0",
37+
"@babel/cli": "^7.25",
38+
"@babel/core": "^7.25",
39+
"@babel/preset-env": "^7.25",
40+
"@fullhuman/postcss-purgecss": "^6.0",
41+
"auto-changelog": "^2.5.0",
4242
"autoprefixer": "^10.4",
4343
"bootstrap": "^5.3",
4444
"clipboard": "^2.0",
4545
"eslint": "^8.54",
4646
"exec-bin": "^1.0.0",
47-
"flexsearch": "^0.7.31",
47+
"flexsearch": "^0.7.43",
4848
"highlight.js": "^11.9",
4949
"hugo-installer": "^4.0",
5050
"instant.page": "^5.2",

0 commit comments

Comments
 (0)