-3

This is the answers I am refering to: https://discourse.gohugo.io/t/how-to-put-the-themes-mit-license-information-on-my-website/32001.

Edit: They talk about a difference between serving in a web page and sharing or selling a code. Remember a MIT license is a software license, so even if they are talking about themes they are talking about the code and software behind. So my question is if am just serving as the answers explain,Do I still have to attribute in a MIT license?.

dialac
  • 1
  • 1

1 Answers1

1

(Apart from the webserver itself and server side scripts,) HTML, XML, JS, CSS or whatever else your website sends to the browser to display the content is code, and you are distributing that code from the server to the client.

Therefore there is no difference between 'serving a webpage' and 'sharing code'. It is the same. You must therefore respect the requirements of the MIT license for the 3rd party components of your website.

Martin_in_AUT
  • 7,205
  • 10
  • 37
  • Thanks for the clarification that was the point. So the code in my backend also needs give proper attribution in a MIT license? – dialac Sep 18 '22 at 17:21
  • 2
    If the code in your backend is sent to the browser, then yes. But usually 'backend' means that it is not sent to the browser. – Martin_in_AUT Sep 19 '22 at 06:13