-
-
Notifications
You must be signed in to change notification settings - Fork 0
イベントリストをTOPに表示できるようにする #78
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 5 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
716bb4e
イベントリストをTOPに表示できるようにする
Fukusan64 6a64900
rename workshop.html → event.html
Fukusan64 d23d810
イベントの説明を追加
Fukusan64 cbb16e2
画像大きさを揃える、リンクの判定を揃える
Fukusan64 815a51d
リンク修正/events → /events/
Fukusan64 b5084b5
Update _includes/top/sections/event.html
mucho613 7c4b1c6
「企画」を全体的に「イベント」に置換、スポンサー募集のタグを「スポンサーに変更」
Fukusan64 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,28 @@ | ||
| <div | ||
| class="max-w-3xl lg:max-w-[1800px] px-8 mx-auto mt-20 lg:mt-48 mb-16 flex flex-col lg:flex-row-reverse items-center lg:items-start"> | ||
| <div class="w-full lg:w-2/5 mb-8"> | ||
| <div class="lg:max-w-sm lg:place-self-start lg:ml-[10%]"> | ||
| <h2 class="text-4xl mb-4 text-center lg:text-left"> | ||
| イベント | ||
| <span class="block mt-2 text-2xl">EVENT</span> | ||
| </h2> | ||
| <p class="leading-7 mb-10"> | ||
| コンテストや体験型のワークショップ等を企画しています。<br> | ||
| 気になっていたことにチャレンジしたり、新しい道具や考え方にふれるチャンス!<br> | ||
| 詳細は<a href="/events/" class="underline">イベント一覧</a>をご覧ください。 | ||
| </p> | ||
| </div> | ||
| </div> | ||
| <ul class="grid grid-cols-1 md:grid-cols-2 xl:grid-cols-3 gap-x-6 gap-y-12 lg:-mt-16 lg:w-3/5"> | ||
| {% assign events = site.data.events | slice: 0, 6 %} | ||
| {% for event in events %} | ||
| <li class="flex flex-col min-w-0"> | ||
| <a href="{{ event.url }}" class="block hover:opacity-80 transition grow"> | ||
| <img class="w-full md:max-h-[160px] md:object-contain " src="{{ event.img }}" alt="{{ event.title }}" /> | ||
| <p class="mt-2">{{ event.title }}</p> | ||
| <p class="text-xs mb-2 leading-5">{{ event.outline }}</p> | ||
| </a> | ||
| </li> | ||
| {% endfor %} | ||
| </ul> | ||
| </div> | ||
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.