index.sql 601 B

12345678910111213141516
  1. SET ":has_post_params" = (SELECT 1 FROM json_each(sqlpage.variables('post')) LIMIT 1);
  2. SET ":content" = (SELECT json_patch(sqlpage.variables('post'), '{
  3. "has_post_params": null,
  4. "timestamp": null
  5. }'));
  6. SET ":title" = 'Code';
  7. SET ":tool" = 'code';
  8. SET ":hash" = COALESCE($hash, '');
  9. SET ":hash" = sqlpage.url_encode(:hash);
  10. SET ":link" = '/code';
  11. SET ":color" = '#f59f00';
  12. SET ":tabler_color" = 'azure';
  13. SET ":image" = '/static/code/qr.svg';
  14. SET ":favicon" = :image;
  15. --SET ":manifest" = '/static/upload/manifest.json';
  16. SELECT 'dynamic' AS component, sqlpage.run_sql('Index.sql') AS properties;