diff --git a/.github/workflows/test.yml b/.github/workflows/release.yml
similarity index 89%
rename from .github/workflows/test.yml
rename to .github/workflows/release.yml
index 7d38691..4ea08e4 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/release.yml
@@ -11,7 +11,7 @@ jobs:
steps:
- uses: actions/checkout@v2
-
+
# Use GitHub Actions' cache to shorten build times and decrease load on servers.
- uses: actions/cache@v1
with:
@@ -19,7 +19,10 @@ jobs:
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gems-
-
+
+ - name: Copy post for og-images
+ run: cp _posts/* _og-images/
+
- uses: helaili/jekyll-action@2.0.4
env:
# Ideally use GITHUB_TOKEN but it gives error for this action.
diff --git a/Gemfile b/Gemfile
index f5c60f1..13154c9 100644
--- a/Gemfile
+++ b/Gemfile
@@ -6,6 +6,5 @@ group :jekyll_plugins do
gem 'jekyll-feed'
gem 'jekyll-sitemap'
gem 'jekyll-paginate-v2'
- gem 'jekyll-seo-tag'
gem 'jekyll-datapage-generator'
end
\ No newline at end of file
diff --git a/Gemfile.lock b/Gemfile.lock
index 8d4031b..5bce388 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -9,7 +9,7 @@ GEM
eventmachine (>= 0.12.9)
http_parser.rb (~> 0.6.0)
eventmachine (1.2.7)
- ffi (1.14.1)
+ ffi (1.14.2)
forwardable-extended (2.6.0)
http_parser.rb (0.6.0)
i18n (1.8.5)
@@ -36,8 +36,6 @@ GEM
jekyll (>= 3.0, < 5.0)
jekyll-sass-converter (2.1.0)
sassc (> 2.0.1, < 3.0)
- jekyll-seo-tag (2.7.1)
- jekyll (>= 3.8, < 5.0)
jekyll-sitemap (1.4.0)
jekyll (>= 3.7, < 5.0)
jekyll-watch (2.2.1)
@@ -74,7 +72,6 @@ DEPENDENCIES
jekyll-datapage-generator
jekyll-feed
jekyll-paginate-v2
- jekyll-seo-tag
jekyll-sitemap
BUNDLED WITH
diff --git a/_config.yml b/_config.yml
index 027807c..fc220b4 100644
--- a/_config.yml
+++ b/_config.yml
@@ -61,7 +61,7 @@ autopages:
categories:
layouts:
- 'autopage_categories.html'
- title: 'Wszystkie strony z tagiem :cat' # :tag is replaced by the tag name
+ title: 'Wszystkie strony w kategorii :cat' # :tag is replaced by the tag name
permalink: '/category/:cat'
slugify:
mode: 'default' # :tag is slugified.
diff --git a/_data/authors.yml b/_data/authors.yml
index 267d8b7..b337b2b 100644
--- a/_data/authors.yml
+++ b/_data/authors.yml
@@ -24,7 +24,7 @@ aryll:
image: https://github.com/aryll.png?size=200
name: "Agnieszka Cent"
bio: >
- To jakieś bio
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
maciejgos:
github: maciejgos
diff --git a/_includes/custom-head.html b/_includes/custom-head.html
deleted file mode 100644
index 8559a67..0000000
--- a/_includes/custom-head.html
+++ /dev/null
@@ -1,6 +0,0 @@
-{% comment %}
- Placeholder to allow defining custom head, in principle, you can add anything here, e.g. favicons:
-
- 1. Head over to https://realfavicongenerator.net/ to add your own favicons.
- 2. Customize default _includes/custom-head.html in your source directory and insert the given code snippet.
-{% endcomment %}
diff --git a/_includes/head.html b/_includes/head.html
index 3691590..d2ff776 100644
--- a/_includes/head.html
+++ b/_includes/head.html
@@ -1,13 +1,34 @@
+{% if page.title %}
+
{{ page.title }}
+{% else %}
+{{ site.title }}
+{% endif %}
+
+{% if page.description %}
+
+{% else %}
+
+{% endif %}
-{% seo %}
+{%- include meta-og.html -%}
+
+{%- include twitter-card.html -%}
+
+
-
+
+
+
+
+
+
+
@@ -17,7 +38,5 @@
{%- if jekyll.environment == 'production' and site.google_analytics -%}
-{%- include google-analytics.html -%}
-{%- endif -%}
-
-{%- include custom-head.html -%}
\ No newline at end of file
+{%- include google-tag.html -%}
+{%- endif -%}
\ No newline at end of file
diff --git a/_includes/meta-og.html b/_includes/meta-og.html
new file mode 100644
index 0000000..a9102f6
--- /dev/null
+++ b/_includes/meta-og.html
@@ -0,0 +1,36 @@
+
+{% if page.title %}
+
+{% else %}
+
+{% endif %}
+{% if page.title %}
+
+{% else %}
+
+{% endif %}
+{% if page.description %}
+
+{% else %}
+
+{% endif %}
+{% if page.url %}
+
+{% endif %}
+{% if page.date %}
+
+
+{% endif %}
+
+
+
+{% if page.categories %}
+{% for category in page.categories limit:1 %}
+
+{% endfor %}
+{% endif %}
+{% if page.tags %}
+{% for tag in page.tags %}
+
+{% endfor %}
+{% endif %}
\ No newline at end of file
diff --git a/_includes/twitter-card.html b/_includes/twitter-card.html
new file mode 100644
index 0000000..afc4be7
--- /dev/null
+++ b/_includes/twitter-card.html
@@ -0,0 +1,23 @@
+
+{% assign author = page.author[0] %}
+{% if site.data.authors[author].twitter %}
+
+{% else %}
+
+{% endif %}
+
+
+
+{% if page.summary %}
+
+{% else %}
+
+{% endif %}
+
+{% if page.image %}
+
+
+{% else %}
+
+
+{% endif %}
\ No newline at end of file
diff --git a/_layouts/post.html b/_layouts/post.html
index d924727..dd9944e 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -39,7 +39,7 @@ {{ page.title | escape }}
{%- if page.image -%}
{% endif %}
-
+
{{
page.date | date: "%-d" }}
@@ -96,7 +96,7 @@
{% assign person = site.data.authors[author] %}
-
+
diff --git a/_posts/2020-07-02-azure-solutions-architect-qa-review-session.md b/_posts/2020-07-02-azure-solutions-architect-qa-review-session.md
index a229784..7d11c4c 100644
--- a/_posts/2020-07-02-azure-solutions-architect-qa-review-session.md
+++ b/_posts/2020-07-02-azure-solutions-architect-qa-review-session.md
@@ -1,5 +1,5 @@
---
-title: "Przegląd zaproponowanych rozwiązań"
+title: "#azure-solutions-architect Przegląd zaproponowanych rozwiązań"
categories:
- "Architecture Meetings"
tags:
@@ -7,25 +7,22 @@ tags:
author:
- kaluzaaa
---
-
-# #azure-solutions-architect Review proposed solutions
-
[Add to calendar](https://evt.mx/KuVfnCVp)
[Meeting link](https://teams.microsoft.com/l/meetup-join/19%3ameeting_MGNjMTU5MTktN2QxMi00YTRhLThkYmUtYzZkZTM0MGUyYjY5%40thread.v2/0?context=%7b%22Tid%22%3a%22cc58971a-0481-4ec0-bf8d-bb2e265db003%22%2c%22Oid%22%3a%22f907c950-2a9a-4012-b163-af67be63b5d6%22%7d)
[Recording](https://youtu.be/2H8VoSQAw1c)
-# Agenda
+## Agenda
1. Review przygotowany rozwiązań.
2. Jak przygotowany projekt przełożyć na stawiane przez biznes SLA.
3. Jak dobrze przełożyć [Overview of the reliability pillar](https://docs.microsoft.com/en-us/azure/architecture/framework/resiliency/overview) na nasz projekt architektury?
4. Q&A.
-# Discussion
+## Discussion
-## Review projektu architektury
+### Review projektu architektury
Zadanie dla was to zaprojektować usługę, do której będą trafiać zdjęcia współdzielone przez kilka systemów.
@@ -43,7 +40,7 @@ Założenia:
- Ile będzie kosztować system na przestrzeni 1, 12 i 24 miesięcy?
### Poglądowy schemat architektury:
-![Schemat architektury](../assets/images/posts/2020-07-02/architektura02072020.jpg)
+![Schemat architektury](/assets/images/posts/2020-07-02/architektura02072020.jpg)
### Opis
- `Azure Blob Storage` geo-redundant
@@ -72,7 +69,8 @@ Zalety architektury: można napisać w tydzień i puścić na produkcję
Wady architektury: regiony są sparowane - żeby nie być zmuszonym do parowania regionów trzeba napisać kod do replikacji na event gridze lub azure function
-## Q&A
+### Q&A
+
1.Czy CosmosDb może zabić kosztami?
CosmosDb karze głupotę. Sprawdza się przy średnich i dużych rozwiązaniach (np. replikacja danych między regionami)
diff --git a/android-chrome-192x192.png b/android-chrome-192x192.png
new file mode 100644
index 0000000..c43bc55
Binary files /dev/null and b/android-chrome-192x192.png differ
diff --git a/android-chrome-384x384.png b/android-chrome-384x384.png
new file mode 100644
index 0000000..777bd18
Binary files /dev/null and b/android-chrome-384x384.png differ
diff --git a/apple-touch-icon.png b/apple-touch-icon.png
new file mode 100644
index 0000000..031c018
Binary files /dev/null and b/apple-touch-icon.png differ
diff --git a/assets/css/spacing.css b/assets/css/spacing.css
index ab34e3d..3a7090c 100644
--- a/assets/css/spacing.css
+++ b/assets/css/spacing.css
@@ -3326,6 +3326,6 @@
.custom-pb-3 { padding-bottom: 20rem !important; }
.custom-pb-4 { padding-bottom: 25rem !important; }
.custom-pb-5 { padding-bottom: 30rem !important; }
-.z-index-1 { z-index: 99; position: relative;}
+.z-index-1 { z-index: 9; position: relative;}
.mt-n15 { margin-top: -15rem !important; }
.mt-n20 { margin-top: -20rem !important; }
\ No newline at end of file
diff --git a/assets/css/style.min.scss b/assets/css/style.min.scss
index 82e4ba7..43dd56b 100644
--- a/assets/css/style.min.scss
+++ b/assets/css/style.min.scss
@@ -10,4 +10,13 @@
pointer-events: none;
cursor: default;
}
+}
+
+.img-author {
+ max-width: 100px;
+}
+
+.post img {
+ max-width: 100%;
+ height: auto;
}
\ No newline at end of file
diff --git a/assets/css/theme-plugin.css b/assets/css/theme-plugin.css
index 9c36d7d..0c50a36 100644
--- a/assets/css/theme-plugin.css
+++ b/assets/css/theme-plugin.css
@@ -15,10 +15,10 @@
7. Spacing
------------------------ */
-@import 'bootstrap-own.min.css';
-@import 'animate.css';
-@import 'line-awesome.min.css';
-@import 'magnific-popup.css';
-@import 'owl.carousel.css';
-@import 'lightslider.min.css';
-@import 'spacing.css';
+@import '/assets/css/bootstrap-own.min.css';
+@import '/assets/css/animate.css';
+@import '/assets/css/line-awesome.min.css';
+@import '/assets/css/magnific-popup.css';
+@import '/assets/css/owl.carousel.css';
+@import '/assets/css/lightslider.min.css';
+@import '/assets/css/spacing.css';
diff --git a/assets/scss/theme.min.scss b/assets/scss/theme.min.scss
index 0cc8f4d..c9e30a8 100644
--- a/assets/scss/theme.min.scss
+++ b/assets/scss/theme.min.scss
@@ -21,6 +21,7 @@ body {
a {
text-decoration: none;
+ color: $text-primary;
&:hover {
color: $text-primary;
diff --git a/browserconfig.xml b/browserconfig.xml
new file mode 100644
index 0000000..b3930d0
--- /dev/null
+++ b/browserconfig.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+ #da532c
+
+
+
diff --git a/docs/Documentation/Documentation.html b/docs/Documentation/Documentation.html
index 9186bc3..1f97ba5 100644
--- a/docs/Documentation/Documentation.html
+++ b/docs/Documentation/Documentation.html
@@ -1008,8 +1008,13 @@
Change Log
-
Initial Release
+ Version 1.1
+
- Update - theme.min.css File
+
- Update - spacing.css File
+
- Update - login-2.html
+
- Update - forgot-password.html
+
- Update - Sass File
diff --git a/docs/Template/html/assets/css/spacing.css b/docs/Template/html/assets/css/spacing.css
index ab34e3d..3a7090c 100644
--- a/docs/Template/html/assets/css/spacing.css
+++ b/docs/Template/html/assets/css/spacing.css
@@ -3326,6 +3326,6 @@
.custom-pb-3 { padding-bottom: 20rem !important; }
.custom-pb-4 { padding-bottom: 25rem !important; }
.custom-pb-5 { padding-bottom: 30rem !important; }
-.z-index-1 { z-index: 99; position: relative;}
+.z-index-1 { z-index: 9; position: relative;}
.mt-n15 { margin-top: -15rem !important; }
.mt-n20 { margin-top: -20rem !important; }
\ No newline at end of file
diff --git a/docs/Template/html/assets/css/theme.min.css b/docs/Template/html/assets/css/theme.min.css
index 3c0acee..2e01125 100644
--- a/docs/Template/html/assets/css/theme.min.css
+++ b/docs/Template/html/assets/css/theme.min.css
@@ -19,6 +19,7 @@ body {
a {
text-decoration: none;
+ color: #01a479;
}
a:hover {
diff --git a/docs/Template/html/forgot-password.html b/docs/Template/html/forgot-password.html
index 1d1bcbc..dc7a091 100644
--- a/docs/Template/html/forgot-password.html
+++ b/docs/Template/html/forgot-password.html
@@ -228,7 +228,7 @@ Forgot Password
-
+
Forgot your password?
diff --git a/docs/Template/html/login-2.html b/docs/Template/html/login-2.html
index 9ff472f..d3ff3bc 100644
--- a/docs/Template/html/login-2.html
+++ b/docs/Template/html/login-2.html
@@ -228,7 +228,7 @@
Login Two