Widgets in HAdashboard

Hi,
I finally managed to get my HADashboard installation to work.
No I am trying to get a basic dashboard to run.
My problem is that the weather widget is not showing any information. I need to understand the basic for the base widgets.
To get the widget to work I need a weather - yaml file, css, js and html file. So I have, but where should I store them?
This is inside my .homeassistant folder now:
20

This is my dashboard:

title: Mainpanel
widget_dimensions: [170, 180]
widget_margins: [15, 15]
columns: 11

clock:
  widget_type: clock

weather:
  widget_type: weather
  units: "°C"

reload:
  widget_type: reload

layout:
  - clock(4x2), weather(3x3)
  -
  -
  -
  - reload(1x1)

And this is the result:

Ideas?

first off:
you dont need any files for the included widget types. you only need those if you want to create your own custom widgets. (which is not a good place to start creating a dashboard)

custom widgets with the same name as included widgets overwrite the included widgets so you dont want that to start with.

secondly:
the weather widget expect certain weather entities created in home assistant.
the widgets and how to use them can be found here for version 2
http://appdaemon.readthedocs.io/en/2.1.12/DASHBOARD_CREATION.html
and for version 3 here
http://appdaemon.readthedocs.io/en/latest/DASHBOARD_CREATION.html

the weather widget is here in that part:
http://appdaemon.readthedocs.io/en/2.1.12/DASHBOARD_CREATION.html#weather

when in homeassistant the weather not configured is, the sensor values cant show up.