Compare commits

...

2 Commits

Author SHA1 Message Date
fd59f9bf19 Added mobile support 2022-09-05 23:27:12 -06:00
d2c487c412 Fixed file emptying bug 2022-09-05 23:14:39 -06:00

View File

@ -71,14 +71,19 @@ $ }
# $1: string: restaurant to remove
$ remove_restaurant () {
$ enforce_arguments "${FUNCNAME[0]}" "$#" 1;
$ grep -Fxv "$1" "$restaurant_file" | tee "$restaurant_file" >/dev/null;
$ local temp_file;
$ temp_file=$(mktemp);
$ grep -Fxv "$1" "$restaurant_file" > "$temp_file";
$ mv "$temp_file" "$restaurant_file";
$ }
#
# $1: string: restuarant to add
$ add_restaurant () {
$ enforce_arguments "${FUNCNAME[0]}" "$#" 1;
$ (grep -Fxv "$1" "$restaurant_file"; printf '%s\n' "$1") |\
$ tee "$restaurant_file" >/dev/null;
$ local temp_file;
$ temp_file=$(mktemp);
$ (grep -Fxv "$1" "$restaurant_file"; printf '%s\n' "$1") > "$temp_file";
$ mv "$temp_file" "$restaurant_file";
$ }
#
# $1 (optional): number: 0=don't overwrite, 1=overwrite
@ -134,6 +139,7 @@ $ esac
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><% $title %></title>
<style>
:root {
@ -160,8 +166,7 @@ $ esac
\#content {
margin: 0 auto;
width: fit-content;
min-width: 400px;
width: calc(min(400px, 100vw - 1.5em));
}
\#todays-restaurant {