Skip to content

Commit

Permalink
🐣
Browse files Browse the repository at this point in the history
  • Loading branch information
Keks committed Nov 28, 2024
0 parents commit 3f4bd23
Show file tree
Hide file tree
Showing 147 changed files with 7,481 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Файл с настройками для редактора.
#
# Если вы разрабатываете в редакторе WebStorm, BBEdit, Coda или SourceLair
# этот файл уже поддерживается и не нужно производить никаких дополнительных
# действий.
#
# Если вы ведёте разработку в другом редакторе, зайдите
# на http://editorconfig.org и в разделе «Download a Plugin»
# скачайте дополнение для вашего редактора.

root = true

[*]
charset = utf-8
end_of_line = lf
indent_size = 2
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true

[*.{go,py,rb,php}]
indent_size = 4

[Makefile]
indent_size = 4
indent_style = tab
insert_final_newline = false

[*.md]
trim_trailing_whitespace = false
9 changes: 9 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
* text eol=auto

*.png binary
*.jpg binary
*.jpeg binary
*.ttf binary
*.webp binary
*.woff binary
*.woff2 binary
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
.DS_Store
.idea
*.ai
*.log
*.pdf
*.psd
*.sublime*
Thumbs.db
vendor
42 changes: 42 additions & 0 deletions Contributing.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# Руководство по внесению изменений

Поддерживайте ваш репозиторий обновлённым. Когда наставник принимает ваш пулреквест, он попадает в репозиторий Академии, но не в ваш форк.

#### 1. Не коммитьте ничего самостоятельно в `master` вашего репозитория

Это помешает вам аккуратно обновлять ваш репозиторий, могут возникнуть конфликты.

#### 2. Прежде чем приступать к новому заданию, обновите `master`

Обновить свой репозиторий из репозитория Академии можно так:

```
# В вашей локальной копии переключитесь в ветку master
git checkout master
# Заберите изменения из репозитория Академии¹
git pull academy master
# Отправьте изменения в ваш форк на Гитхабе
git push
```

¹ В `academy` должна быть ссылка на репозиторий Академии. Если его там нет, добавьте:

```
git remote add academy [email protected]:htmlacademy-yii/2376867-task-force-1.git
```

Когда вы обновили `master`, создайте ветку для нового задания:

```
git checkout -b module2-task1
```

`module2-task1` — это название ветки. Под описанием каждого задания в интерфейсе интенсива для вас будет указано правильное название ветки.

--

#### Есть вопрос?

Посмотрите [коллекцию часто задаваемых вопросов по Git](http://firstaidgit.ru).
55 changes: 55 additions & 0 deletions Readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
# Личный проект «TaskForce»

* Студент: [Гермиона Акселератовна](https://up.htmlacademy.ru/yii-individual/1/user/2376867).
* Наставник: `Неизвестно`.

---

**Обратите внимание на файл:**

- [Contributing.md](Contributing.md) — руководство по внесению изменений.

--

_Не удаляйте и не обращайте внимание на файлы:_<br>
_`.editorconfig`, `.gitattributes`, `.gitignore`._

---

### Памятка

#### 1. Зарегистрируйтесь на Гитхабе

Если у вас ещё нет аккаунта на [github.com](https://github.com/join), скорее зарегистрируйтесь.

#### 2. Создайте форк

Откройте репозиторий и нажмите кнопку «Fork» в правом верхнем углу. Репозиторий из Академии будет скопирован в ваш аккаунт.

<img width="767" alt="" src="https://user-images.githubusercontent.com/8537950/65957999-98951580-e44e-11e9-86dc-24c3186892b8.png">

Получится вот так:

<img width="767" alt="" src="https://user-images.githubusercontent.com/8537950/65958000-98951580-e44e-11e9-8a6c-deb5a0751e85.png">

#### 3. Клонируйте репозиторий на свой компьютер

Будьте внимательны: нужно клонировать свой репозиторий (форк), а не репозиторий Академии. Также обратите внимание, что клонировать репозиторий нужно через SSH, а не через HTTPS. Нажмите зелёную кнопку в правой части экрана, чтобы скопировать SSH-адрес вашего репозитория:

<img width="767" alt="" src="https://user-images.githubusercontent.com/8537950/65958001-992dac00-e44e-11e9-9ac4-9dbb98d7e410.png">

Клонировать репозиторий можно так:

```
git clone SSH-адрес_вашего_форка
```

Команда клонирует репозиторий на ваш компьютер и подготовит всё необходимое для старта работы.

#### 4. Начинайте обучение!

---

<a href="https://htmlacademy.ru/intensive/php2"><img align="left" width="50" height="50" alt="HTML Academy" src="https://up.htmlacademy.ru/static/img/intensive/yii/logo-for-github-2.png"></a>

Репозиторий создан для обучения на профессиональном онлайн‑курсе «[PHP, уровень 2](https://htmlacademy.ru/intensive/php2)» от [HTML Academy](https://htmlacademy.ru).
103 changes: 103 additions & 0 deletions add-task.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Taskforce</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header class="page-header">
<nav class="main-nav">
<a href='#' class="header-logo">
<img class="logo-image" src="img/logotype.png" width=227 height=60 alt="taskforce">
</a>
<div class="nav-wrapper">
<ul class="nav-list">
<li class="list-item list-item--active">
<a class="link link--nav" >Новое</a>
</li>
<li class="list-item">
<a href="#" class="link link--nav">Мои задания</a>
</li>
<li class="list-item">
<a href="#" class="link link--nav">Создать задание</a>
</li>
<li class="list-item">
<a href="#" class="link link--nav">Настройки</a>
</li>
</ul>
</div>
</nav>
<div class="user-block">
<a href="#">
<img class="user-photo" src="img/man-glasses.png" width="55" height="55" alt="Аватар">
</a>
<div class="user-menu">
<p class="user-name">Василий</p>
<div class="popup-head">
<ul class="popup-menu">
<li class="menu-item">
<a href="#" class="link">Настройки</a>
</li>
<li class="menu-item">
<a href="#" class="link">Связаться с нами</a>
</li>
<li class="menu-item">
<a href="#" class="link">Выход из системы</a>
</li>
</ul>
</div>
</div>
</div>
</header>
<main class="main-content main-content--center container">
<div class="add-task-form regular-form">
<form>
<h3 class="head-main head-main">Публикация нового задания</h3>
<div class="form-group">
<label class="control-label" for="essence-work">Опишите суть работы</label>
<input id="essence-work" type="text">
<span class="help-block">Error description is here</span>
</div>
<div class="form-group">
<label class="control-label" for="username">Подробности задания</label>
<textarea id="username"></textarea>
<span class="help-block">Error description is here</span>
</div>
<div class="form-group">
<label class="control-label" for="town-user">Категория</label>
<select id="town-user">
<option>Курьерские услуги</option>
<option>Грузоперевозки</option>
<option>Клининг</option>
</select>
<span class="help-block">Error description is here</span>
</div>
<div class="form-group">
<label class="control-label" for="location">Локация</label>
<input class="location-icon" id="location" type="text">
<span class="help-block">Error description is here</span>
</div>
<div class="half-wrapper">
<div class="form-group">
<label class="control-label" for="budget">Бюджет</label>
<input class="budget-icon" id="budget" type="text">
<span class="help-block">Error description is here</span>
</div>
<div class="form-group">
<label class="control-label" for="period-execution">Срок исполнения</label>
<input id="period-execution" type="date">
<span class="help-block">Error description is here</span>
</div>
</div>
<p class="form-label">Файлы</p>
<div class="new-file">
Добавить новый файл
</div>
<input type="submit" class="button button--blue" value="Опубликовать">
</form>
</div>
</main>
</body>
</html>
2 changes: 2 additions & 0 deletions assets/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*
!.gitignore
Loading

0 comments on commit 3f4bd23

Please sign in to comment.