Compare commits
No commits in common. "fd59f9bf192897fdcc0a96b542519c0ccbd238d0" and "e1fdeff7180fcf16fe6d659df2ebe710900ccb64" have entirely different histories.
fd59f9bf19
...
e1fdeff718
15
index.n0m
15
index.n0m
@ -71,19 +71,14 @@ $ }
|
|||||||
# $1: string: restaurant to remove
|
# $1: string: restaurant to remove
|
||||||
$ remove_restaurant () {
|
$ remove_restaurant () {
|
||||||
$ enforce_arguments "${FUNCNAME[0]}" "$#" 1;
|
$ enforce_arguments "${FUNCNAME[0]}" "$#" 1;
|
||||||
$ local temp_file;
|
$ grep -Fxv "$1" "$restaurant_file" | tee "$restaurant_file" >/dev/null;
|
||||||
$ temp_file=$(mktemp);
|
|
||||||
$ grep -Fxv "$1" "$restaurant_file" > "$temp_file";
|
|
||||||
$ mv "$temp_file" "$restaurant_file";
|
|
||||||
$ }
|
$ }
|
||||||
#
|
#
|
||||||
# $1: string: restuarant to add
|
# $1: string: restuarant to add
|
||||||
$ add_restaurant () {
|
$ add_restaurant () {
|
||||||
$ enforce_arguments "${FUNCNAME[0]}" "$#" 1;
|
$ enforce_arguments "${FUNCNAME[0]}" "$#" 1;
|
||||||
$ local temp_file;
|
$ (grep -Fxv "$1" "$restaurant_file"; printf '%s\n' "$1") |\
|
||||||
$ temp_file=$(mktemp);
|
$ tee "$restaurant_file" >/dev/null;
|
||||||
$ (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
|
# $1 (optional): number: 0=don't overwrite, 1=overwrite
|
||||||
@ -139,7 +134,6 @@ $ esac
|
|||||||
<!doctype html>
|
<!doctype html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<title><% $title %></title>
|
<title><% $title %></title>
|
||||||
<style>
|
<style>
|
||||||
:root {
|
:root {
|
||||||
@ -166,7 +160,8 @@ $ esac
|
|||||||
|
|
||||||
\#content {
|
\#content {
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
width: calc(min(400px, 100vw - 1.5em));
|
width: fit-content;
|
||||||
|
min-width: 400px;
|
||||||
}
|
}
|
||||||
|
|
||||||
\#todays-restaurant {
|
\#todays-restaurant {
|
||||||
|
Loading…
Reference in New Issue
Block a user