diff options
author | Adam Spragg <adam@spra.gg> | 2018-05-31 23:25:50 +0100 |
---|---|---|
committer | Adam Spragg <adam@spra.gg> | 2018-05-31 23:25:50 +0100 |
commit | 93858a4c34dd4007c72e915ed175bcdc24bbdadd (patch) | |
tree | 40279e7f6f521f0abc97a9f317ed500acb0d141e /html/index.php |
First fully working config and content for the site
Diffstat (limited to 'html/index.php')
-rw-r--r-- | html/index.php | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/html/index.php b/html/index.php new file mode 100644 index 0000000..18ff7df --- /dev/null +++ b/html/index.php @@ -0,0 +1,61 @@ +<!DOCTYPE html> +<html> + <head> + <title>Spragg Software Services Ltd.</title> + <link rel="stylesheet" href="/style/main.css"></link> + </head> + <body> + <header> + <h1>Spragg Software Services Ltd</h1> + <nav> + <ul> + <li class="selected"><a href="/">Home</a></li> + <li><a href="/projects">Projects</a></li> + <li><a href="/blog">Blog</a></li> + <li><a href="/privacy">Privacy</a></li> + <li><a href="/contact">Contact</a></li> + </ul> + </nav> + </header> + <main> + <h2>Software customisation</h2> + <p>Sometimes a software package does 99% of the things you need it to do, but if it just did + <em>one</em> thing slightly differently, it would save you a lot of time, or make you + a lot more productive. + Some software, especially (but not only) + <a href="https://www.gnu.org/philosophy/free-sw.html">Free Software</a>, is made with + customisability, or even just extensibility, in mind. + It's possible that your software could be customised to fit your needs better.</p> + + <h2>Software configuration</h2> + <p>Sometimes software <em>can</em> can do the thing you need it to do, but <em>making</em> it + do that thing can be poorly documented or even just spectacularly non-obvious.</p> + + <h2><!-- img src="/icons/Tango/scalable/apps/system-installer.svg" /-->Software installation</h2> + <p>Sometimes, just getting software installed correctly can be a battle. + In those cases, just figuring out what the issue is can be a struggle.</p> + + <h2>Custom automation</h2> + <p>Sometimes you've got two software packages that do exactly what they're supposed to do, + but they don't talk to each other. + Maybe that manual procedure you have to repeat again and again to get data from one + place to another could be automated.</p> + + <h2>Tech troubleshooting</h2> + <p>Sometimes tech just plays up, doesn't do what it's supposed to, or stops doing what it used + to do for no apparent reason.</p> + + <h2>Who you gonna... uh, email?</h2> + <p><a href="mailto:adam@spragg-ssl.co.uk">Drop me a line</a>, and I'll let you know if I think I + can help. + My expertise is mostly with Linux- and other Free-Software-based systems, but I might be + able to lend a hand with other platforms too.</p> + </main> + <footer> + <hr /> + <p>Spragg Software Services Ltd is registered in England, No. 11248242. + Registered office: 82 Upper Hanover Street, Sheffield, S3 7RQ. + VAT reg No. 295343283.</p> + </footer> + </body> +</html> |