Skip to content
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

Initial Commit #4

Open
wants to merge 33 commits into
base: rel1.0.0
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
053ccb0
Initial Commit
jamattey Sep 4, 2022
61c45e7
Initial Commit
jamattey Sep 5, 2022
c37da1a
Update Program.cs
jamattey Sep 5, 2022
b08d180
Initial Commit
jamattey Sep 5, 2022
6b585ca
delete Kanban.cshtml
stsrki Sep 6, 2022
3eddb34
Update _Imports.razor
jamattey Sep 6, 2022
7fbf1eb
Create Kanban.razor
jamattey Sep 6, 2022
0a8c775
Update SimpleKanbanBoard.csproj
jamattey Sep 6, 2022
0cbf24e
Update Program.cs
jamattey Sep 7, 2022
a1b11c3
Update index.html
jamattey Sep 7, 2022
9b8913f
Update SimpleKanbanBoard.csproj
jamattey Sep 7, 2022
fe3c0c0
Initial Commit
jamattey Sep 9, 2022
d95ded8
Update Program.cs
jamattey Sep 9, 2022
b5250ef
Update MainLayout.razor
jamattey Sep 9, 2022
2e91b92
Update index.html
jamattey Sep 9, 2022
b686062
Update _Imports.razor
jamattey Sep 9, 2022
7aaedee
Update Counter.razor
jamattey Sep 9, 2022
28cd6e9
Update index.html
jamattey Sep 9, 2022
3d8e3d5
Update Index.razor
jamattey Sep 9, 2022
a326b7a
Update MainLayout.razor
jamattey Sep 11, 2022
4a30c04
Initial Commit
jamattey Sep 11, 2022
8c75972
Fix errors
stsrki Sep 12, 2022
4fb71a4
Update Index.razor
jamattey Sep 12, 2022
cb4f06c
Update Index.razor
jamattey Sep 12, 2022
091a98e
Merge branch 'KanbanBoard' of https://github.com/Megabit/Blazorise-Sa…
jamattey Sep 12, 2022
8dcd22d
Update Index.razor
jamattey Sep 12, 2022
f3621db
Update Index.razor
jamattey Sep 12, 2022
310dfe6
Update Index.razor
jamattey Sep 12, 2022
c6502b6
Update KanbanBoard.razor
jamattey Sep 12, 2022
66f3db7
Update Index.razor
jamattey Sep 12, 2022
caf70b6
Update KanbanBoard.razor
jamattey Sep 12, 2022
a54e570
Update KanbanBoard.razor
jamattey Sep 12, 2022
908692c
Fix errors
stsrki Sep 12, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions SimpleKanbanBoard/Pages/Kanban.razor
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
@page "/Kanban Board"

<PageTitle>Kanban Board</PageTitle>

<h1>Hello, Welcome To your Kanban Board</h1>


2 changes: 2 additions & 0 deletions SimpleKanbanBoard/SimpleKanbanBoard.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,13 @@
<PackageReference Include="Blazorise" Version="1.0.6" />
<PackageReference Include="Blazorise.Bootstrap" Version="1.0.6" />
<PackageReference Include="Blazorise.Icons.FontAwesome" Version="1.0.6" />
<PackageReference Include="Blazorise.Sidebar" Version="1.0.6" />
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Don't use the Sidebar extension. It is obsolete. Use the Bar component https://blazorise.com/docs/components/bar

</ItemGroup>

<ItemGroup>
<None Remove="Blazorise" />
<None Remove="Blazorise.Bootstrap" />
<None Remove="Blazorise.Icons.FontAwesome" />
<None Remove="Blazorise.Sidebar" />
</ItemGroup>
</Project>
1 change: 1 addition & 0 deletions SimpleKanbanBoard/_Imports.razor
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@
@using SimpleKanbanBoard
@using SimpleKanbanBoard.Shared
@using Blazorise
@using Blazorise.Sidebar