This file contains 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
<?xml version="1.0" encoding="utf-8"?> | |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" | |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:widget="http://www.netvibes.com/ns/"> | |
<head> | |
<title>My Image Widget</title> | |
<meta name="keywords" content="image, link" /> | |
<meta name="author" content="Nicolas Challeil" /> | |
<meta name="description" content="Display an image with optional link and title" /> |
This file contains 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
<?xml version="1.0" encoding="utf-8"?> | |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:widget="http://www.netvibes.com/ns/" > | |
<head> | |
<title>Titre du widget</title> | |
<link rel="icon" type="image/png" href="http://www.netvibes.com/favicon.ico" /> | |
<meta name="author" content="John Doe" /> |
This file contains 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
<?xml version="1.0" encoding="utf-8"?> | |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:widget="http://www.netvibes.com/ns/" > | |
<head> | |
<title>Widget title</title> | |
<link rel="icon" type="image/png" href="http://www.netvibes.com/favicon.ico" /> | |
<meta name="author" content="John Doe" /> |
This file contains 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
name: Greet Everyone | |
# This workflow is triggered on pushes to the repository. | |
on: [push] | |
jobs: | |
build: | |
# Job name is Greeting | |
name: Greeting | |
# This job runs on Linux | |
runs-on: ubuntu-latest |
This file contains 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
import { getIngredients } from './../../data/recipesData.js'; | |
const mainSearch = 'gateau'; | |
const selectedAppliance = 'casserole'; | |
const selectedUstensils = ['couteau', 'casserole']; | |
const selectedIngredients = ['pomme', 'chocolat']; | |
const recipies = { | |
/* */ | |
}; |