mirror of
https://github.com/supanadit/todo.git
synced 2024-11-10 09:52:19 +00:00
Favicon Added
This commit is contained in:
parent
dc0545b113
commit
30865e80cb
BIN
public/favicon.png
Normal file
BIN
public/favicon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 570 B |
@ -5,6 +5,7 @@
|
|||||||
<meta name="csrf_token" content="{{ csrf_token() }}"/>
|
<meta name="csrf_token" content="{{ csrf_token() }}"/>
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<title>Todo</title>
|
<title>Todo</title>
|
||||||
|
<link rel="shortcut icon" href="{{asset('favicon.png')}}"/>
|
||||||
<!-- Tell the browser to be responsive to screen width -->
|
<!-- Tell the browser to be responsive to screen width -->
|
||||||
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
||||||
<!-- Bootstrap 3.3.7 -->
|
<!-- Bootstrap 3.3.7 -->
|
||||||
|
@ -37,8 +37,6 @@
|
|||||||
<div class="modal-content">
|
<div class="modal-content">
|
||||||
<form action="/" method="post" id="todo-create-modal-form">
|
<form action="/" method="post" id="todo-create-modal-form">
|
||||||
<div class="modal-header">
|
<div class="modal-header">
|
||||||
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
|
||||||
<span aria-hidden="true">×</span></button>
|
|
||||||
<h4 class="modal-title">Create Todo</h4>
|
<h4 class="modal-title">Create Todo</h4>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-body">
|
<div class="modal-body">
|
||||||
@ -75,8 +73,6 @@
|
|||||||
<div class="modal-content">
|
<div class="modal-content">
|
||||||
<form action="/" method="post" id="todo-edit-modal-form">
|
<form action="/" method="post" id="todo-edit-modal-form">
|
||||||
<div class="modal-header">
|
<div class="modal-header">
|
||||||
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
|
||||||
<span aria-hidden="true">×</span></button>
|
|
||||||
<h4 class="modal-title">Edit Todo</h4>
|
<h4 class="modal-title">Edit Todo</h4>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-body">
|
<div class="modal-body">
|
||||||
@ -156,8 +152,6 @@
|
|||||||
<div class="modal-content">
|
<div class="modal-content">
|
||||||
<form action="/" method="post" id="todo-item-create-modal-form">
|
<form action="/" method="post" id="todo-item-create-modal-form">
|
||||||
<div class="modal-header">
|
<div class="modal-header">
|
||||||
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
|
||||||
<span aria-hidden="true">×</span></button>
|
|
||||||
<h4 class="modal-title">Create Todo Item</h4>
|
<h4 class="modal-title">Create Todo Item</h4>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-body">
|
<div class="modal-body">
|
||||||
@ -190,8 +184,6 @@
|
|||||||
<div class="modal-content">
|
<div class="modal-content">
|
||||||
<form action="/" method="post" id="todo-item-edit-modal-form">
|
<form action="/" method="post" id="todo-item-edit-modal-form">
|
||||||
<div class="modal-header">
|
<div class="modal-header">
|
||||||
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
|
||||||
<span aria-hidden="true">×</span></button>
|
|
||||||
<h4 class="modal-title">Edit Todo Item</h4>
|
<h4 class="modal-title">Edit Todo Item</h4>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-body">
|
<div class="modal-body">
|
||||||
@ -278,7 +270,7 @@
|
|||||||
" </div>");
|
" </div>");
|
||||||
} else {
|
} else {
|
||||||
$("#todo-list").html("<div style=\"text-align: center;height: 200px;position: relative;\">\n" +
|
$("#todo-list").html("<div style=\"text-align: center;height: 200px;position: relative;\">\n" +
|
||||||
" <p style=\"position: absolute;top:50%;left:50%;color:#777;\"><i class='fa fa-calendar-times-o'></i> Empty</p>\n" +
|
" <p style=\"position: absolute;top:50%;left:45%;color:#777;\"><i class='fa fa-calendar-times-o'></i> Create new one <span class=\"label label-default\">ALT + N</span></p>\n" +
|
||||||
" </div>");
|
" </div>");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<title>Todo</title>
|
<title>Todo</title>
|
||||||
|
<link rel="shortcut icon" href="{{asset('favicon.png')}}"/>
|
||||||
<!-- Tell the browser to be responsive to screen width -->
|
<!-- Tell the browser to be responsive to screen width -->
|
||||||
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
||||||
<!-- Bootstrap 3.3.7 -->
|
<!-- Bootstrap 3.3.7 -->
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
<meta name="csrf_token" content="{{ csrf_token() }}"/>
|
<meta name="csrf_token" content="{{ csrf_token() }}"/>
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<title>Todo</title>
|
<title>Todo</title>
|
||||||
|
<link rel="shortcut icon" href="{{asset('favicon.png')}}"/>
|
||||||
<!-- Tell the browser to be responsive to screen width -->
|
<!-- Tell the browser to be responsive to screen width -->
|
||||||
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
||||||
<!-- Bootstrap 3.3.7 -->
|
<!-- Bootstrap 3.3.7 -->
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
<meta name="csrf_token" content="{{ csrf_token() }}"/>
|
<meta name="csrf_token" content="{{ csrf_token() }}"/>
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<title>Todo</title>
|
<title>Todo</title>
|
||||||
|
<link rel="shortcut icon" href="{{asset('favicon.png')}}"/>
|
||||||
<!-- Tell the browser to be responsive to screen width -->
|
<!-- Tell the browser to be responsive to screen width -->
|
||||||
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
||||||
<!-- Bootstrap 3.3.7 -->
|
<!-- Bootstrap 3.3.7 -->
|
||||||
|
Loading…
Reference in New Issue
Block a user