diff options
-rw-r--r-- | assets/css/custom.css | 7 | ||||
-rw-r--r-- | content/en/_index.md | 45 | ||||
-rw-r--r-- | content/es/_index.md | 45 | ||||
-rw-r--r-- | content/ru/_index.md | 45 | ||||
-rw-r--r-- | layouts/partials/header.html | 6 |
5 files changed, 25 insertions, 123 deletions
diff --git a/assets/css/custom.css b/assets/css/custom.css index 7db3df1..95cf163 100644 --- a/assets/css/custom.css +++ b/assets/css/custom.css @@ -1,3 +1,10 @@ body { background-color: black; } + +.title div { + color: white; + font-size: 24px; + font-weight: bold; + margin: 19.92px 0 19.92px 0; +} diff --git a/content/en/_index.md b/content/en/_index.md index e2cbfdc..9ec2750 100644 --- a/content/en/_index.md +++ b/content/en/_index.md @@ -4,47 +4,10 @@ menu: "main" weight: 1 --- -# Web Development +# Introduction -Hihi^^ +Hello, hello! My name is Ada, let's get acquainted \o/ -I make minimalistic sites 🫸✨🫷 +I am a Python web developer, Linux engineer and system administrator. I love to travel, make new acquaintances with interesting people, play chess. I provide a service for creating static sites for a nominal fee, here are [examples](https://github.com/miraikumiko) of my work. -Briefly about me: System administrator, Linux engineer, Python programmer, full-stack web developer. - -I don't remember my work experience(<br> -~5 years - -Currently I'm laying out websites from scratch or using the static generator Hugo. - -The price for a static site with several pages is $50. - -The price for more complex sites is discussed in person) - -Here are my example works: - -## Beauty salon - -[Live Demo](https://mk-beauty-salon.netlify.app) - - - -## Corp site - - - -## Portfolio - - - -## Gallery - -[Live Demo](https://mk-gallery.netlify.app) - - - -## Link Tree - -[Live Demo](https://mk-link-tree.netlify.app) - - +Here I blog and write articles in which I share my own experience. In addition, I have a [microblog](https://cr8r.gg/@miraikumiko) in which I write about everything. diff --git a/content/es/_index.md b/content/es/_index.md index a53a2b5..1e7a1df 100644 --- a/content/es/_index.md +++ b/content/es/_index.md @@ -4,47 +4,10 @@ menu: "main" weight: 1 --- -# Desarrollo web +# Introducción -Hola-hola^^ +Hola, hola! Mi nombre es Ada, vamos a conocernos \o/ -Hago sitios minimalistas 🫸✨🫷 +Soy un desarrollador web Python, ingeniero de Linux y administrador de sistemas. Me encanta viajar, conocer gente nueva e interesante y jugar al ajedrez. Ofrezco un servicio para crear sitios estáticos por una tarifa nominal, aquí hay [ejemplos](https://github.com/miraikumiko) de mi trabajo. -Brevemente sobre mí: Administrador de sistemas, ingeniero de Linux, programador de Python, desarrollador web full-stack. - -Ya no recuerdo cuál es mi experiencia laboral(<br> -~5 años - -Ahora diseño sitios web desde cero o uso el generador estático Hugo. - -El precio de un sitio estático con varias páginas es de €50. - -El precio de los sitios más complejos se discute en persona) - -Aquí están mis trabajos de ejemplo: - -## Salón de belleza - -[Demostración en vivo](https://mk-beauty-salon.netlify.app) - - - -## Sitio corporativo - - - -## Portafolio - - - -## Galería - -[Demostración en vivo](https://mk-gallery.netlify.app) - - - -## Link Tree - -[Demostración en vivo](https://mk-link-tree.netlify.app) - - +Aquí escribo un blog y artículos en los que comparto mis propias experiencias. Además de esto, tengo un [microblog](https://cr8r.gg/@miraikumiko) donde escribo sobre todo. diff --git a/content/ru/_index.md b/content/ru/_index.md index e50843f..a69be82 100644 --- a/content/ru/_index.md +++ b/content/ru/_index.md @@ -4,47 +4,10 @@ menu: "main" weight: 1 --- -# Веб-разработка +# Вступление -Ахайо^^ +Привет, привет! Меня зовут Ада, будем знакомы \o/ -Я делаю минималистичные сайты 🫸✨🫷 +Я являюсь Python веб-разработчиком, Linux инженером и системным администратором. Люблю путешествовать, заводить новые знакомства с интересными людьми, играть в шахматы. Предоставляю услугу по созданию статичных сайтов за символичную плату, вот [примеры](https://github.com/miraikumiko) моих работ. -Если коротко обо мне: Системный администратор, Linux инженер, Python программист, фулл-стек веб-разработчик. - -Опыт работы не помню уже какой(<br> -~5 лет - -Сейчас верстаю сайты с нуля либо использую статический генератор Hugo. - -Цена за статичный сайт с несколькими страницами $50. - -Цена за более сложные сайты обсуждается лично) - -Вот примеры моих работ: - -## Салон красоты - -[Живая демонстрация](https://mk-beauty-salon.netlify.app) - - - -## Корпоративный сайт - - - -## Портфолио - - - -## Галерея - -[Живая демонстрация](https://mk-gallery.netlify.app) - - - -## Link Tree - -[Живая демонстрация](https://mk-link-tree.netlify.app) - - +Здесь я веду блог и пишу статьи в которых делюсь собственным опыт. Помимо этого у меня есть [микроблог](https://cr8r.gg/@miraikumiko) в котором пишу обо всём подряд. diff --git a/layouts/partials/header.html b/layouts/partials/header.html new file mode 100644 index 0000000..f7d9d5e --- /dev/null +++ b/layouts/partials/header.html @@ -0,0 +1,6 @@ +<a class="skip-link" href="#main-content">{{ i18n "skip-link" }}</a> + +<a href="{{ relURL .Site.Home.RelPermalink }}" class="title"> + <div>{{ .Site.Title }}</div> +</a> +<nav>{{- partial "nav.html" . -}}</nav> |